diff options
author | Sam Dunietz <sam.dunietz@10gen.com> | 2016-07-28 15:22:44 -0400 |
---|---|---|
committer | Sam Dunietz <sam.dunietz@10gen.com> | 2016-07-28 15:22:51 -0400 |
commit | 9a776eae4f669fdcfae94c41c0cbbea662d36c94 (patch) | |
tree | ae068722c8baf5e433b50d3ebe5bd688ccda8afe /src/mongo/db/client.cpp | |
parent | 35c6b03c67346433d481a0e1be7a49977997b030 (diff) | |
download | mongo-9a776eae4f669fdcfae94c41c0cbbea662d36c94.tar.gz |
SERVER-24367 Implement CollectionRangeDeleter task lifetime management
Diffstat (limited to 'src/mongo/db/client.cpp')
-rw-r--r-- | src/mongo/db/client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/client.cpp b/src/mongo/db/client.cpp index 2a665268811..6776239f036 100644 --- a/src/mongo/db/client.cpp +++ b/src/mongo/db/client.cpp @@ -153,7 +153,7 @@ ClientBasic* ClientBasic::getCurrent() { Client& cc() { Client* c = currentClient.getMake()->get(); - verify(c); + invariant(c); return *c; } |