summaryrefslogtreecommitdiff
path: root/src/mongo/db
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db')
-rw-r--r--src/mongo/db/s/vector_clock_persist_command.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mongo/db/s/vector_clock_persist_command.cpp b/src/mongo/db/s/vector_clock_persist_command.cpp
index 19acba49083..9e491b367fc 100644
--- a/src/mongo/db/s/vector_clock_persist_command.cpp
+++ b/src/mongo/db/s/vector_clock_persist_command.cpp
@@ -32,6 +32,7 @@
#include "mongo/platform/basic.h"
#include "mongo/db/commands.h"
+#include "mongo/db/s/sharding_state.h"
#include "mongo/db/vector_clock_mutable.h"
namespace mongo {
@@ -61,6 +62,9 @@ public:
const std::string& dbname_unused,
const BSONObj& cmdObj,
BSONObjBuilder& result) override {
+ auto const shardingState = ShardingState::get(opCtx);
+ uassertStatusOK(shardingState->canAcceptShardedCommands());
+
VectorClockMutable::get(opCtx)->waitForDurable().get(opCtx);
return true;