summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDianna Hohensee <dianna.hohensee@10gen.com>2016-02-02 19:26:53 -0500
committerDianna Hohensee <dianna.hohensee@10gen.com>2016-02-02 19:26:53 -0500
commit93934f75b662f51b86af424a51fd691f2992977a (patch)
treea89fb10d6f960409a656fc518a6371019faaa044
parentc91b1ea56a2619a123876970229556013cea5d9a (diff)
downloadmongo-93934f75b662f51b86af424a51fd691f2992977a.tar.gz
Fixing format issue in SERVER-20290
-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;
}