summaryrefslogtreecommitdiff
path: root/src/mongo/db/keys_collection_manager.h
diff options
context:
space:
mode:
authorRandolph Tan <randolph@10gen.com>2018-02-12 11:42:52 -0500
committerRandolph Tan <randolph@10gen.com>2018-02-14 13:45:23 -0500
commit14f46a166dc729b5c46a081f39511017d4aca828 (patch)
treeba6a91a3a57d7a5c81e1c3bb56c42ec3b001711e /src/mongo/db/keys_collection_manager.h
parent87a217c70c86a9cd1a3ff1622caefc147b110144 (diff)
downloadmongo-14f46a166dc729b5c46a081f39511017d4aca828.tar.gz
SERVER-33081 Reset KeysCollectionManager during rollback properly
Diffstat (limited to 'src/mongo/db/keys_collection_manager.h')
-rw-r--r--src/mongo/db/keys_collection_manager.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/keys_collection_manager.h b/src/mongo/db/keys_collection_manager.h
index 5826e2228ee..e0138cf2e32 100644
--- a/src/mongo/db/keys_collection_manager.h
+++ b/src/mongo/db/keys_collection_manager.h
@@ -173,7 +173,8 @@ private:
std::shared_ptr<RefreshFunc> _doRefresh;
bool _hasSeenKeys = false;
- bool _inShutdown = false;
+ // In the process of stopping this runner.
+ bool _isStopping = false;
};
/**