diff options
author | Benoit Foucher <benoit@zeroc.com> | 2013-10-17 14:53:45 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2013-10-17 14:53:45 +0200 |
commit | b59a53f0e45d3137eb8d0939023417588a0c9142 (patch) | |
tree | b5217e358bd26412e80e0fe201103af1729aeb13 /cpp/src/IceGrid/Database.cpp | |
parent | minor edits to IceBox comments (diff) | |
download | ice-b59a53f0e45d3137eb8d0939023417588a0c9142.tar.bz2 ice-b59a53f0e45d3137eb8d0939023417588a0c9142.tar.xz ice-b59a53f0e45d3137eb8d0939023417588a0c9142.zip |
Fixed IceGrid registry replication bug reported by Cengage
Diffstat (limited to 'cpp/src/IceGrid/Database.cpp')
-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 e95af5961d9..0409ede2462 100644 --- a/cpp/src/IceGrid/Database.cpp +++ b/cpp/src/IceGrid/Database.cpp @@ -2088,7 +2088,7 @@ Database::reload(const ApplicationHelper& oldApp, { ReplicaGroupEntryPtr entry = ReplicaGroupEntryPtr::dynamicCast(_adapterCache.get(r->id)); assert(entry); - entry->update(r->loadBalancing); + entry->update(application, r->loadBalancing); } catch(const AdapterNotExistException&) { |