comment fix

This commit is contained in:
pufit 2023-03-10 23:15:15 -05:00 committed by Nikita Mikhaylov
parent dfea87d248
commit 72769d468e

View File

@ -27,7 +27,7 @@ namespace ErrorCodes
String KeeperClient::executeFourLetterCommand(const String & command)
{
// We need create new socket every time because ZooKeeper forcefully shut down connection after four-letter-word command.
/// We need to create a new socket every time because ZooKeeper forcefully shuts down the connection after a four-letter-word command.
Poco::Net::StreamSocket socket;
socket.connect(Poco::Net::SocketAddress{zk_args.hosts[0]}, zk_args.connection_timeout_ms * 1000);