diff options
author | Eliot Horowitz <eliot@10gen.com> | 2011-07-16 15:06:43 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2011-07-16 15:06:43 -0400 |
commit | 8e477b32eea5f9eede4bd60b67a4befad4c2d5b6 (patch) | |
tree | ee7a4cdf519c6495fdb2e5fd83cad6238ca54b10 /s/d_migrate.cpp | |
parent | 65e14132a54705a5ac6c3098e868b815ef76e81b (diff) | |
download | mongo-8e477b32eea5f9eede4bd60b67a4befad4c2d5b6.tar.gz |
better logging message for moveChunk commit repl
Diffstat (limited to 's/d_migrate.cpp')
-rw-r--r-- | s/d_migrate.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/s/d_migrate.cpp b/s/d_migrate.cpp index 4a3789da2a5..c96c0ede698 100644 --- a/s/d_migrate.cpp +++ b/s/d_migrate.cpp @@ -1475,7 +1475,9 @@ namespace mongo { bool flushPendingWrites( const ReplTime& lastOpApplied ) { if ( ! opReplicatedEnough( lastOpApplied ) ) { OCCASIONALLY warning() << "migrate commit waiting for " << slaveCount - << " slaves for '" << ns << "' " << min << " -> " << max << migrateLog; + << " slaves for '" << ns << "' " << min << " -> " << max + << " waiting for: " << lastOpApplied + << migrateLog; return false; } |