diff options
author | Marc Laukien <marc@zeroc.com> | 2004-12-28 23:26:04 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-12-28 23:26:04 +0000 |
commit | 18cef9d4189ed1fd9aa48d349696df53f7656589 (patch) | |
tree | a1e22db8915c822caa5927560c80831397fb754f /cpp/src/Ice/ConnectionFactory.cpp | |
parent | Added XREF to doc for context changes. (diff) | |
download | ice-18cef9d4189ed1fd9aa48d349696df53f7656589.tar.bz2 ice-18cef9d4189ed1fd9aa48d349696df53f7656589.tar.xz ice-18cef9d4189ed1fd9aa48d349696df53f7656589.zip |
fixed retry logging
Diffstat (limited to 'cpp/src/Ice/ConnectionFactory.cpp')
-rw-r--r-- | cpp/src/Ice/ConnectionFactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/ConnectionFactory.cpp b/cpp/src/Ice/ConnectionFactory.cpp index 34012751e39..0c9c531e009 100644 --- a/cpp/src/Ice/ConnectionFactory.cpp +++ b/cpp/src/Ice/ConnectionFactory.cpp @@ -308,7 +308,7 @@ IceInternal::OutgoingConnectionFactory::create(const vector<EndpointPtr>& endpts Trace out(_instance->logger(), traceLevels->retryCat); out << "connection to endpoint failed"; - if(q != endpoints.end()) + if(q + 1 != endpoints.end()) { out << ", trying next endpoint\n"; } |