Commit 4f4f3a5e authored by Alexey Yurchenko's avatar Alexey Yurchenko Committed by Nirbhay Choubey

Fixes codership/mysql-wsrep#118

parent 472d6632
...@@ -833,19 +833,10 @@ bool wsrep_start_replication() ...@@ -833,19 +833,10 @@ bool wsrep_start_replication()
wsrep_sst_donor, wsrep_sst_donor,
bootstrap))) bootstrap)))
{ {
if (-ESOCKTNOSUPPORT == rcode) DBUG_PRINT("wsrep",("wsrep->connect(%s) failed: %d",
{ wsrep_cluster_address, rcode));
DBUG_PRINT("wsrep",("unrecognized cluster address: '%s', rcode: %d", WSREP_ERROR("wsrep::connect(%s) failed: %d",
wsrep_cluster_address, rcode)); wsrep_cluster_address, rcode);
WSREP_ERROR("unrecognized cluster address: '%s', rcode: %d",
wsrep_cluster_address, rcode);
}
else
{
DBUG_PRINT("wsrep",("wsrep->connect() failed: %d", rcode));
WSREP_ERROR("wsrep::connect() failed: %d", rcode);
}
return false; return false;
} }
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment