From afd8ce54e3882fec943fac42ab8aa4425e2f40e9 Mon Sep 17 00:00:00 2001 From: Mikhail Sukharev Date: Wed, 29 Nov 2023 02:27:24 +0600 Subject: [PATCH] Fix http protocol warning --- src/pool/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pool/mod.rs b/src/pool/mod.rs index 5d0dc12..5d94fa0 100644 --- a/src/pool/mod.rs +++ b/src/pool/mod.rs @@ -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." );