Skip to content

v1.27.0

Compare
Choose a tag to compare
@orian orian released this 17 Jan 12:09
· 2 commits to master since this release
2133208

Allow to set InsecureSkipVerify for ClickHouse connection.

Changes a config file format: connection_pool option is moved into http_client.

Before:

connection_pool:
  max_idle_conns: 100
  max_idle_conns_per_host: 2

After

http_client:
  insecure_skip_verify: true
  connection_pool:
    max_idle_conns: 100
    max_idle_conns_per_host: 2