diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-12-22 19:31:20 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-12-22 19:31:20 +0100 |
commit | c721e108d464120d1de94bdc29baf9d506141406 (patch) | |
tree | 97fa63afa1ee6ee9ccd7db178e9827bdc9b6b9db /cpp | |
parent | Fixed make install from config to install upgradeicegrid36.py (diff) | |
download | ice-c721e108d464120d1de94bdc29baf9d506141406.tar.bz2 ice-c721e108d464120d1de94bdc29baf9d506141406.tar.xz ice-c721e108d464120d1de94bdc29baf9d506141406.zip |
Fixed ICE-6211 - background test hang on Android
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/Ice/OutgoingAsync.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/src/Ice/OutgoingAsync.cpp b/cpp/src/Ice/OutgoingAsync.cpp index 518867e06f2..62c0943fb09 100644 --- a/cpp/src/Ice/OutgoingAsync.cpp +++ b/cpp/src/Ice/OutgoingAsync.cpp @@ -123,6 +123,12 @@ ProxyOutgoingAsyncBase::retryException(const Exception& ex) { try { + // + // It's important to let the retry queue do the retry. This is + // called from the connect request handler and the retry might + // require could end up waiting for the flush of the + // connection to be done. + // handleRetryException(ex); _instance->retryQueue()->add(this, 0); } |