diff options
author | Mark Spruiell <mes@zeroc.com> | 2002-09-30 17:55:28 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2002-09-30 17:55:28 +0000 |
commit | 5409677b6160da6ef4699426e115c4a39764689d (patch) | |
tree | 2e65a5f5871b2795283d98d2f4b74c4aaa87d6d3 /cpp/src | |
parent | bug fixes ; added adapter deactivation tests (diff) | |
download | ice-5409677b6160da6ef4699426e115c4a39764689d.tar.bz2 ice-5409677b6160da6ef4699426e115c4a39764689d.tar.xz ice-5409677b6160da6ef4699426e115c4a39764689d.zip |
bug fix
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/Proxy.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp index ec4b3f25689..fd601088540 100644 --- a/cpp/src/Ice/Proxy.cpp +++ b/cpp/src/Ice/Proxy.cpp @@ -616,6 +616,13 @@ IceProxy::Ice::Object::__handleException(const LocalException& ex, int& cnt) IceUtil::ThreadControl::sleep(IceUtil::Time::milliSeconds(retryIntervals[cnt - 1])); } } + else + { + // + // Impossible to retry after Communicator has been destroyed. + // + ex.ice_throw(); + } } void |