From 555a91d8bb10fc59ef3611cd87907e68f923905a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jaramago=20Fern=C3=A1ndez?= Date: Tue, 28 Mar 2023 14:50:20 +0200 Subject: [PATCH] Fix 'proxy_info' line style to fit in 'max-line-width' --- lib/ProxySQL_Cluster.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/ProxySQL_Cluster.cpp b/lib/ProxySQL_Cluster.cpp index 599a59d7d..53862dac7 100644 --- a/lib/ProxySQL_Cluster.cpp +++ b/lib/ProxySQL_Cluster.cpp @@ -538,7 +538,10 @@ void ProxySQL_Node_Entry::set_checksums(MYSQL_RES *_r) { if (strcmp(checksums_values.mysql_servers.checksum, GloVars.checksums_values.mysql_servers.checksum) == 0) { // See LOGGING-NOTE at 'admin_variables' above. if (checksums_values.mysql_servers.last_changed == now) { - proxy_info("Cluster: checksum for mysql_servers from peer %s:%d matches with local checksum %s , we won't sync.\n", hostname, port, GloVars.checksums_values.mysql_servers.checksum); + proxy_info( + "Cluster: checksum for mysql_servers from peer %s:%d matches with local checksum %s , we won't sync.\n", + hostname, port, GloVars.checksums_values.mysql_servers.checksum + ); } checksums_values.mysql_servers.diff_check = 0; }