summaryrefslogtreecommitdiff
path: root/src/mongo/s/d_state.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/d_state.h')
-rw-r--r--src/mongo/s/d_state.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/s/d_state.h b/src/mongo/s/d_state.h
index d9edb1159b9..34368b0c143 100644
--- a/src/mongo/s/d_state.h
+++ b/src/mongo/s/d_state.h
@@ -60,7 +60,7 @@ namespace mongo {
void gotShardName( const std::string& name );
bool setShardName( const std::string& name ); // Same as above, does not throw
- std::string getShardName() { scoped_lock lk(_mutex); return _shardName; }
+ std::string getShardName() { boost::lock_guard<boost::mutex> lk(_mutex); return _shardName; }
// Helpers for SetShardVersion which report the host name sent to this shard when the shard
// name does not match. Do not use in other places.