Skip to content

Commit 12b95ac

Browse files
committed
Change header to lower case
1 parent 4ae819d commit 12b95ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clickhouse-http-client/src/main/java/com/clickhouse/client/http/ClickHouseHttpConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ protected static Map<String, String> createDefaultHeaders(ClickHouseConfig confi
189189
if (config.isSsl() && !ClickHouseChecker.isNullOrEmpty(config.getSslCert())) {
190190
map.put("x-clickhouse-ssl-certificate-auth", "on");
191191
} else if (!ClickHouseChecker.isNullOrEmpty(credentials.getPassword())) {
192-
map.put("x-clickHouse-key", credentials.getPassword());
192+
map.put("x-clickhouse-key", credentials.getPassword());
193193
}
194194
}
195195

0 commit comments

Comments
 (0)