summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2014-12-22 19:31:20 +0100
committerBenoit Foucher <benoit@zeroc.com>2014-12-22 19:31:20 +0100
commitc721e108d464120d1de94bdc29baf9d506141406 (patch)
tree97fa63afa1ee6ee9ccd7db178e9827bdc9b6b9db /cpp/src
parentFixed make install from config to install upgradeicegrid36.py (diff)
downloadice-c721e108d464120d1de94bdc29baf9d506141406.tar.bz2
ice-c721e108d464120d1de94bdc29baf9d506141406.tar.xz
ice-c721e108d464120d1de94bdc29baf9d506141406.zip
Fixed ICE-6211 - background test hang on Android
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/Ice/OutgoingAsync.cpp6
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);
}