diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-11-07 10:02:27 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-11-07 10:02:27 +0100 |
commit | d7dfd2da27c2a7043b7cb04069dba51cd48b1752 (patch) | |
tree | 1cd0a79131425e27703e8c5300b924b48d830a55 /cpp/src | |
parent | Bug 2841 - destroy session when connection is lost (diff) | |
download | ice-d7dfd2da27c2a7043b7cb04069dba51cd48b1752.tar.bz2 ice-d7dfd2da27c2a7043b7cb04069dba51cd48b1752.tar.xz ice-d7dfd2da27c2a7043b7cb04069dba51cd48b1752.zip |
Fixed bug in IceGrid application sync
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IceGrid/Database.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/Database.cpp b/cpp/src/IceGrid/Database.cpp index 5e5ff949aef..b2d91a0b61d 100644 --- a/cpp/src/IceGrid/Database.cpp +++ b/cpp/src/IceGrid/Database.cpp @@ -395,7 +395,7 @@ Database::syncApplicationDescriptor(const ApplicationDescriptor& newDesc, AdminS Lock sync(*this); checkSessionLock(session); - while(_updating.find(update.descriptor.name) != _updating.end()) + while(_updating.find(newDesc.name) != _updating.end()) { wait(); } |