diff options
author | Marc Laukien <marc@zeroc.com> | 2005-10-20 14:45:04 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2005-10-20 14:45:04 +0000 |
commit | bf391ab5f977aab3db11897224149d19672cd88a (patch) | |
tree | 1194495e4a4100209ba7e4973e6e825e7fe724c3 /cppe/src/IceE/Connection.cpp | |
parent | Removed IceGrid.Node.KeepAliveTimeout property. (diff) | |
download | ice-bf391ab5f977aab3db11897224149d19672cd88a.tar.bz2 ice-bf391ab5f977aab3db11897224149d19672cd88a.tar.xz ice-bf391ab5f977aab3db11897224149d19672cd88a.zip |
close fix
Diffstat (limited to 'cppe/src/IceE/Connection.cpp')
-rwxr-xr-x | cppe/src/IceE/Connection.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/cppe/src/IceE/Connection.cpp b/cppe/src/IceE/Connection.cpp index afe4a5210dd..4fe759eafdd 100755 --- a/cppe/src/IceE/Connection.cpp +++ b/cppe/src/IceE/Connection.cpp @@ -126,15 +126,7 @@ Ice::Connection::close(bool force) // requests to be retried, regardless of whether the server // has processed them or not. // - // For consistency, we also wait until batch requests have - // completed, and, if this is a server connection, all - // requests have been dispatched. These are the same criteria - // that we use to determine whether ACM may close this - // connection. - // - while(!_requests.empty() || - _batchStreamInUse || !_batchStream.b.empty() || - _dispatchCount != 0) + while(!_requests.empty()) { wait(); } |