summaryrefslogtreecommitdiff
path: root/src/mongo/db/ttl.cpp
diff options
context:
space:
mode:
authorAmirsaman Memaripour <amirsaman.memaripour@mongodb.com>2020-06-29 23:08:09 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-07-01 16:22:45 +0000
commitd4e7ea57599b44353b5393afedee8ae5670837b3 (patch)
tree2c0717c768faa292590bd6018d7db7038129a23e /src/mongo/db/ttl.cpp
parent5ffbd8f8322651b4953f29da0cde9e31eab039d4 (diff)
downloadmongo-d4e7ea57599b44353b5393afedee8ae5670837b3.tar.gz
SERVER-49151 Fix malformed LOGV2 and assertion IDs
Diffstat (limited to 'src/mongo/db/ttl.cpp')
-rw-r--r--src/mongo/db/ttl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/ttl.cpp b/src/mongo/db/ttl.cpp
index 9eda88a8abe..e224b6876e3 100644
--- a/src/mongo/db/ttl.cpp
+++ b/src/mongo/db/ttl.cpp
@@ -155,14 +155,14 @@ public:
* Signals the thread to quit and then waits until it does.
*/
void shutdown() {
- LOGV2(36841000, "Shutting down TTL collection monitor thread");
+ LOGV2(3684100, "Shutting down TTL collection monitor thread");
{
stdx::lock_guard<Latch> lk(_stateMutex);
_shuttingDown = true;
_shuttingDownCV.notify_one();
}
wait();
- LOGV2(36841001, "Finished shutting down TTL collection monitor thread");
+ LOGV2(3684101, "Finished shutting down TTL collection monitor thread");
}
private: