Fixed typo in previous commit

pull/2750/head
René Cannaò 6 years ago
parent b6164b0d0a
commit 2e60432466

@ -112,7 +112,7 @@ void * ProxySQL_Cluster_Monitor_thread(void *args) {
bool same_version = false;
while ((row = mysql_fetch_row(result))) {
if (row[0]) {
if (strcmp(row[0], PROXYSQL_VERSION)!=0) {
if (strcmp(row[0], PROXYSQL_VERSION)==0) {
proxy_info("Cluster: clustering with peer %s:%d . Remote version: %s . Self version: %s\n", node->hostname, node->port, row[0], PROXYSQL_VERSION);
same_version = true;
} else {

Loading…
Cancel
Save