summaryrefslogtreecommitdiff
path: root/src/mongo/s/commands/cluster_enable_sharding_cmd.cpp
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2017-03-12 17:27:43 -0400
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2017-03-12 17:28:36 -0400
commit39e06c9ef8c797ad626956b564ac9ebe295cbaf3 (patch)
treebfa2742fe1a814980def015b29dc8d5bfaf4bad3 /src/mongo/s/commands/cluster_enable_sharding_cmd.cpp
parent8125c55a251805899552d0af4776930216223703 (diff)
downloadmongo-39e06c9ef8c797ad626956b564ac9ebe295cbaf3.tar.gz
SERVER-22611 Sharding catalog cache refactor
Diffstat (limited to 'src/mongo/s/commands/cluster_enable_sharding_cmd.cpp')
-rw-r--r--src/mongo/s/commands/cluster_enable_sharding_cmd.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/s/commands/cluster_enable_sharding_cmd.cpp b/src/mongo/s/commands/cluster_enable_sharding_cmd.cpp
index 1db7ea7ef03..64537920cb7 100644
--- a/src/mongo/s/commands/cluster_enable_sharding_cmd.cpp
+++ b/src/mongo/s/commands/cluster_enable_sharding_cmd.cpp
@@ -41,7 +41,6 @@
#include "mongo/db/commands.h"
#include "mongo/s/catalog/sharding_catalog_client.h"
#include "mongo/s/catalog_cache.h"
-#include "mongo/s/config.h"
#include "mongo/s/grid.h"
#include "mongo/util/log.h"
@@ -109,7 +108,7 @@ public:
audit::logEnableSharding(Client::getCurrent(), dbname);
// Make sure to force update of any stale metadata
- Grid::get(opCtx)->catalogCache()->invalidate(dbname);
+ Grid::get(opCtx)->catalogCache()->purgeDatabase(dbname);
return true;
}