diff options
author | gregs <greg@10gen.com> | 2012-06-09 15:09:01 -0400 |
---|---|---|
committer | gregs <greg@10gen.com> | 2012-06-09 15:09:01 -0400 |
commit | 2e12c38432817131bfa463e763198436ac82d115 (patch) | |
tree | fdde109da04cf9e430c0ea6452b065bc7b88c15a /src/mongo/client/syncclusterconnection.h | |
parent | 38a258f13283440eb3f19afbb653d872b04d0d98 (diff) | |
download | mongo-2e12c38432817131bfa463e763198436ac82d115.tar.gz |
Revert "SERVER-4262 remove race condition on config reload in sharded remove"
This reverts commit d7f89643a917538fa953a17d80acc164fb4885ad.
Diffstat (limited to 'src/mongo/client/syncclusterconnection.h')
-rw-r--r-- | src/mongo/client/syncclusterconnection.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/client/syncclusterconnection.h b/src/mongo/client/syncclusterconnection.h index 611869b437b..1d0fc3afdc2 100644 --- a/src/mongo/client/syncclusterconnection.h +++ b/src/mongo/client/syncclusterconnection.h @@ -44,7 +44,6 @@ namespace mongo { using DBClientBase::query; using DBClientBase::update; - using DBClientBase::remove; /** * @param commaSeparated should be 3 hosts comma separated @@ -77,7 +76,7 @@ namespace mongo { virtual void insert( const string &ns, const vector< BSONObj >& v, int flags=0); - virtual void remove( const string &ns , Query query, int flags ); + virtual void remove( const string &ns , Query query, bool justOne ); virtual void update( const string &ns , Query query , BSONObj obj , int flags ); |