diff options
author | Benoit Foucher <benoit@zeroc.com> | 2010-02-25 11:29:46 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2010-02-25 11:29:46 +0100 |
commit | 47a5c2f2a2ea021b960b8da8709670cac07af5a4 (patch) | |
tree | 008b7225e18472f81b1380aab287800051e14689 /cpp/src/IceGrid/Database.cpp | |
parent | bug 4071 - revert renaming of createStringConverter (diff) | |
download | ice-47a5c2f2a2ea021b960b8da8709670cac07af5a4.tar.bz2 ice-47a5c2f2a2ea021b960b8da8709670cac07af5a4.tar.xz ice-47a5c2f2a2ea021b960b8da8709670cac07af5a4.zip |
Fixed bug 4695 - IceStorm/repgrid test failure
Diffstat (limited to 'cpp/src/IceGrid/Database.cpp')
-rw-r--r-- | cpp/src/IceGrid/Database.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/Database.cpp b/cpp/src/IceGrid/Database.cpp index 9ea5c095520..63341364459 100644 --- a/cpp/src/IceGrid/Database.cpp +++ b/cpp/src/IceGrid/Database.cpp @@ -1005,10 +1005,12 @@ Database::getLocatorAdapterInfo(const string& id, } bool -Database::addAdapterSyncCallback(const string& id, const SynchronizationCallbackPtr& callback) +Database::addAdapterSyncCallback(const string& id, + const SynchronizationCallbackPtr& callback, + const std::set<std::string>& excludes) { Lock sync(*this); // Make sure this isn't call during an update. - return _adapterCache.get(id)->addSyncCallback(callback); + return _adapterCache.get(id)->addSyncCallback(callback, excludes); } AdapterInfoSeq |