diff options
Diffstat (limited to 'src/mongo/db/client.cpp')
-rw-r--r-- | src/mongo/db/client.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mongo/db/client.cpp b/src/mongo/db/client.cpp index 8c1eb3c3bfb..456e0b0c98d 100644 --- a/src/mongo/db/client.cpp +++ b/src/mongo/db/client.cpp @@ -55,9 +55,7 @@ thread_local ServiceContext::UniqueClient currentClient; void invariantNoCurrentClient() { invariant(!haveClient(), str::stream() << "Already have client on this thread: " // - << '"' - << Client::getCurrent()->desc() - << '"'); + << '"' << Client::getCurrent()->desc() << '"'); } } // namespace |