Skip to content

Commit

Permalink
update description
Browse files Browse the repository at this point in the history
  • Loading branch information
zhicwu committed May 2, 2023
1 parent 0db2a5c commit b9a3f8f
Showing 1 changed file with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ public enum ClickHouseHttpOption implements ClickHouseOption {
* Whether to enable keep-alive or not.
*/
KEEP_ALIVE("http_keep_alive", true, "Whether to use keep-alive or not"),
/**
* Max open connections apply with Apache HttpClient only.
*/
MAX_OPEN_CONNECTIONS("max_open_connections", 10, "Max open connections apply with Apache HttpClient only."),
/**
* Whether to receive information about the progress of a query in response
* headers.
Expand All @@ -47,13 +51,7 @@ public enum ClickHouseHttpOption implements ClickHouseOption {
/**
* Web context.
*/
WEB_CONTEXT("web_context", "/", "Web context."),

/**
* Max connections of ApacheHttpConnectionImpl
*/
MAX_OPEN_CONNECTIONS("max_open_connections", 10,
"max open connections for a ClickHouseConnection");
WEB_CONTEXT("web_context", "/", "Web context.");

private final String key;
private final Serializable defaultValue;
Expand Down

0 comments on commit b9a3f8f

Please sign in to comment.