Skip to content

Commit

Permalink
Fix http protocol warning
Browse files Browse the repository at this point in the history
  • Loading branch information
suharev7 committed Nov 28, 2023
1 parent f224fed commit afd8ce5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pool/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ impl Pool {
}

for host in &hosts {
if host.port() == Some(8124) {
if host.port() == Some(8123) {
warn!(
"The attempt to establish a connection through the text protocol. clickhouse-rs is for using the binary protocol."
);
Expand Down

0 comments on commit afd8ce5

Please sign in to comment.