summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/oplog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/oplog.cpp')
-rw-r--r--src/mongo/db/repl/oplog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/repl/oplog.cpp b/src/mongo/db/repl/oplog.cpp
index 129f7ab16db..4f84da29db7 100644
--- a/src/mongo/db/repl/oplog.cpp
+++ b/src/mongo/db/repl/oplog.cpp
@@ -96,8 +96,8 @@
#include "mongo/util/fail_point_service.h"
#include "mongo/util/file.h"
#include "mongo/util/log.h"
-#include "mongo/util/mongoutils/str.h"
#include "mongo/util/startup_test.h"
+#include "mongo/util/str.h"
namespace mongo {
@@ -1993,8 +1993,8 @@ Status applyCommand_inlock(OperationContext* opCtx,
auto op = kOpsMap.find(o.firstElementFieldName());
if (op == kOpsMap.end()) {
return Status(ErrorCodes::BadValue,
- mongoutils::str::stream() << "Invalid key '" << o.firstElementFieldName()
- << "' found in field 'o'");
+ str::stream() << "Invalid key '" << o.firstElementFieldName()
+ << "' found in field 'o'");
}
const ApplyOpMetadata& curOpToApply = op->second;