summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRandolph Tan <randolph@10gen.com>2015-10-30 15:17:36 -0400
committerRandolph Tan <randolph@10gen.com>2015-10-30 16:51:09 -0400
commit3c16f067e897bf07fc9e5fc3f1514c41438b9e04 (patch)
tree62fa23515158fab54b2736aed680bdb83e25ebe8
parentaa2c2ac32a50f746c8854fdeb3719623853affa4 (diff)
downloadmongo-3c16f067e897bf07fc9e5fc3f1514c41438b9e04.tar.gz
SERVER-21034 Remove log of xfer deletes on data that the shard does not own
-rw-r--r--src/mongo/db/s/migration_destination_manager.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mongo/db/s/migration_destination_manager.cpp b/src/mongo/db/s/migration_destination_manager.cpp
index 300ca138e24..e9944a39385 100644
--- a/src/mongo/db/s/migration_destination_manager.cpp
+++ b/src/mongo/db/s/migration_destination_manager.cpp
@@ -825,7 +825,6 @@ bool MigrationDestinationManager::_applyMigrateOp(OperationContext* txn,
BSONObj fullObj;
if (Helpers::findById(txn, ctx.db(), ns.c_str(), id, fullObj)) {
if (!isInRange(fullObj, min, max, shardKeyPattern)) {
- LOG(2) << "not applying out of range deletion: " << fullObj << migrateLog;
continue;
}
}