Commit a975cbfd authored by unknown's avatar unknown

fixes in connect_client thread. g_eventLogger usage, correct condition on...

fixes in connect_client thread. g_eventLogger usage, correct condition on calling connect on Transporter


ndb/src/common/transporter/TransporterRegistry.cpp:
  Only check that we have a port number before attempting a transporter connect
parent 0cc89c6b
......@@ -1215,14 +1215,14 @@ TransporterRegistry::start_clients_thread()
/**
* First, we try to connect (if we have a port number).
*/
if (theTransporterTypes[nodeId] != tt_TCP_TRANSPORTER
|| t->get_s_port() > 0)
if (t->get_s_port())
result= t->connect_client();
if (result<0 && t->get_s_port()!=0)
ndbout_c("Error while trying to make connection (Node %u to"
" %u via port %u) error: %d. Retrying...",
g_eventLogger.warning("Error while trying to make connection "
"(Node %u to %u via port %u) "
"error: %d. Retrying...",
t->getRemoteNodeId(),
t->getLocalNodeId(),
t->get_s_port());
......
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