From 0aba911c9616dda8f429b5348f9f0d35c8eb8aa6 Mon Sep 17 00:00:00 2001 From: Serge Klochkov Date: Wed, 8 Jan 2025 16:29:42 +0100 Subject: [PATCH] Fix prettier issues --- packages/client-common/src/settings.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/client-common/src/settings.ts b/packages/client-common/src/settings.ts index f4064e7..1f11696 100644 --- a/packages/client-common/src/settings.ts +++ b/packages/client-common/src/settings.ts @@ -1597,9 +1597,9 @@ interface ClickHouseHTTPSettings { * This is regulated by the `default_session_timeout` server setting. */ session_timeout: UInt64 /** You can use this setting to check the session status before executing the query. - * If a session is expired or cannot be found, the server returns `SESSION_NOT_FOUND` with error code 372. - * NB: the session mechanism is only reliable when you connect directly to a particular ClickHouse server node. - * Due to each particular session not being shared across the cluster, sessions won't work well in a multi-node environment with a load balancer, + * If a session is expired or cannot be found, the server returns `SESSION_NOT_FOUND` with error code 372. + * NB: the session mechanism is only reliable when you connect directly to a particular ClickHouse server node. + * Due to each particular session not being shared across the cluster, sessions won't work well in a multi-node environment with a load balancer, * as there will be no guarantee that each consequent request will be received on the same node. */ session_check: Bool }