summaryrefslogtreecommitdiff
path: root/src/mongo/s/server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/server.cpp')
-rw-r--r--src/mongo/s/server.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mongo/s/server.cpp b/src/mongo/s/server.cpp
index 79d27a87e0f..4a1653e4fcb 100644
--- a/src/mongo/s/server.cpp
+++ b/src/mongo/s/server.cpp
@@ -108,11 +108,6 @@ bool inShutdown() {
return dbexitCalled;
}
-bool haveLocalShardingInfo(Client* client, const string& ns) {
- verify(0);
- return false;
-}
-
static BSONObj buildErrReply(const DBException& ex) {
BSONObjBuilder errB;
errB.append("$err", ex.what());
@@ -213,11 +208,12 @@ static Status initializeSharding(bool doUpgrade) {
if (!status.isOK()) {
return status;
}
+
return Status::OK();
}
static ExitCode runMongosServer(bool doUpgrade) {
- setThreadName("mongosMain");
+ Client::initThread("mongosMain");
printShardingVersionInfo(false);
// Add sharding hooks to both connection pools - ShardingConnectionHook includes auth hooks