summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests
diff options
context:
space:
mode:
authorJonathan Ma <jonathan.ma@mongodb.com>2019-01-03 11:25:56 -0500
committerJonathan Ma <jonathan.ma@mongodb.com>2019-01-08 10:06:39 -0500
commita43fb64a1c640378c54d1e61869d607f70154f91 (patch)
tree8c919b3b2531c514188245897b50e34f08c0af41 /src/mongo/dbtests
parentdd9be1adf2425c7ddd746ff6da75d564474ebed3 (diff)
downloadmongo-a43fb64a1c640378c54d1e61869d607f70154f91.tar.gz
SERVER-37700 Remove thread names that include whitespaces
Diffstat (limited to 'src/mongo/dbtests')
-rw-r--r--src/mongo/dbtests/deferred_writer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/dbtests/deferred_writer.cpp b/src/mongo/dbtests/deferred_writer.cpp
index 4f985adb359..446c4eaeedc 100644
--- a/src/mongo/dbtests/deferred_writer.cpp
+++ b/src/mongo/dbtests/deferred_writer.cpp
@@ -71,7 +71,7 @@ static const NamespaceString kTestNamespace("unittests", "deferred_writer_tests"
class RaiiWrapper {
public:
explicit RaiiWrapper(std::unique_ptr<DeferredWriter> writer) : _writer(std::move(writer)) {
- _writer->startup("DeferredWriter test");
+ _writer->startup("DeferredWriter-test");
}
RaiiWrapper(RaiiWrapper&& other) : _writer(std::move(other._writer)) {}