diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-05-29 15:27:39 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-05-29 15:27:39 +0000 |
commit | daa0fea0c0c0dc14adb48971589c260079997bea (patch) | |
tree | 7ea5052b6ccffff390cc5173c3f0986190cac82d /cpp/src/IceGrid/Topics.cpp | |
parent | Fixed session test failures. (diff) | |
download | ice-daa0fea0c0c0dc14adb48971589c260079997bea.tar.bz2 ice-daa0fea0c0c0dc14adb48971589c260079997bea.tar.xz ice-daa0fea0c0c0dc14adb48971589c260079997bea.zip |
Fixes
Diffstat (limited to 'cpp/src/IceGrid/Topics.cpp')
-rw-r--r-- | cpp/src/IceGrid/Topics.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/Topics.cpp b/cpp/src/IceGrid/Topics.cpp index 0151bfca666..e11fbe285e5 100644 --- a/cpp/src/IceGrid/Topics.cpp +++ b/cpp/src/IceGrid/Topics.cpp @@ -328,8 +328,7 @@ RegistryObserverTopic::applicationUpdated(int serial, const ApplicationUpdateDes if(p != _applications.end()) { ApplicationHelper helper(c.adapter->getCommunicator(), p->second); - helper.update(desc); - p->second = helper.getDescriptor(); + p->second = helper.update(desc); } } catch(const DeploymentException& ex) |