Skip to content

Commit b9a3f8f

Browse files
committed
update description
1 parent 0db2a5c commit b9a3f8f

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

clickhouse-http-client/src/main/java/com/clickhouse/client/http/config/ClickHouseHttpOption.java

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ public enum ClickHouseHttpOption implements ClickHouseOption {
3333
* Whether to enable keep-alive or not.
3434
*/
3535
KEEP_ALIVE("http_keep_alive", true, "Whether to use keep-alive or not"),
36+
/**
37+
* Max open connections apply with Apache HttpClient only.
38+
*/
39+
MAX_OPEN_CONNECTIONS("max_open_connections", 10, "Max open connections apply with Apache HttpClient only."),
3640
/**
3741
* Whether to receive information about the progress of a query in response
3842
* headers.
@@ -47,13 +51,7 @@ public enum ClickHouseHttpOption implements ClickHouseOption {
4751
/**
4852
* Web context.
4953
*/
50-
WEB_CONTEXT("web_context", "/", "Web context."),
51-
52-
/**
53-
* Max connections of ApacheHttpConnectionImpl
54-
*/
55-
MAX_OPEN_CONNECTIONS("max_open_connections", 10,
56-
"max open connections for a ClickHouseConnection");
54+
WEB_CONTEXT("web_context", "/", "Web context.");
5755

5856
private final String key;
5957
private final Serializable defaultValue;

0 commit comments

Comments
 (0)