summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mongo/db/s/migration_destination_manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/s/migration_destination_manager.cpp b/src/mongo/db/s/migration_destination_manager.cpp
index 38d563023d5..8f2b55eb335 100644
--- a/src/mongo/db/s/migration_destination_manager.cpp
+++ b/src/mongo/db/s/migration_destination_manager.cpp
@@ -318,8 +318,8 @@ bool MigrationDestinationManager::startCommit(const MigrationSessionId& sessionI
// serving as a recipient of chunks for another collection (note that it cannot be the same
// collection, because the old donor still holds the collection lock).
if (!_sessionId->matches(sessionId)) {
- warning() << "startCommit received commit request from a stale session " << sessionId.toString()
- << ". Current session is " << _sessionId->toString();
+ warning() << "startCommit received commit request from a stale session "
+ << sessionId.toString() << ". Current session is " << _sessionId->toString();
return false;
}