ClickHouse/tests/config/client_config.xml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
881 B
XML
Raw Normal View History

2020-02-22 01:35:28 +00:00
<!-- Config set into /etc/clickhouse-client/. It's used if no other configs are found. -->
<config>
<openSSL>
<client>
<loadDefaultCAFile>true</loadDefaultCAFile>
<cacheSessions>true</cacheSessions>
<disableProtocols>sslv2,sslv3</disableProtocols>
<preferServerCiphers>true</preferServerCiphers>
<invalidCertificateHandler>
<name>AcceptCertificateHandler</name> <!-- For tests only-->
</invalidCertificateHandler>
</client>
</openSSL>
<!-- Default timeout is 5 sec. Set it to 10 to avoid tests flakiness with slow builds (debug, tsan) -->
<sync_request_timeout>10</sync_request_timeout>
<!-- Directory containing the proto files for the well-known Protobuf types. -->
<google_protos_path>/usr/share/clickhouse/protos/</google_protos_path>
2020-02-22 01:35:28 +00:00
</config>