diff options
author | Sam Dunietz <sam.dunietz@10gen.com> | 2016-07-29 12:14:06 -0400 |
---|---|---|
committer | Sam Dunietz <sam.dunietz@10gen.com> | 2016-07-29 12:14:11 -0400 |
commit | 47a9c891ad77f6f26143ad35a7033fefabed4e82 (patch) | |
tree | 79b9f9437f06775e9df00c121e765a12a936817d /src/mongo/db/client.cpp | |
parent | f7662220e89874e8ed5ae65e4f77206e367c8037 (diff) | |
download | mongo-47a9c891ad77f6f26143ad35a7033fefabed4e82.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; } |