summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/Database.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2010-02-25 11:29:46 +0100
committerBenoit Foucher <benoit@zeroc.com>2010-02-25 11:29:46 +0100
commit47a5c2f2a2ea021b960b8da8709670cac07af5a4 (patch)
tree008b7225e18472f81b1380aab287800051e14689 /cpp/src/IceGrid/Database.cpp
parentbug 4071 - revert renaming of createStringConverter (diff)
downloadice-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.cpp6
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