bug with setting up failover connections
Brought to you by:
orenmnero
Can't read the failover connections in the configure file. Bug from SocketInitiator.cpp line 275 & 276. Need to swap these two lines.
Orig Code:
std::string portString = portStream.str();
portStream << SOCKET_CONNECT_PORT << num;
Should be:
portStream << SOCKET_CONNECT_PORT << num;
std::string portString = portStream.str();
Checked in a fix. Also for ThreadedSocketInitiator