diff options
author | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2015-07-29 14:55:13 -0400 |
---|---|---|
committer | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2015-07-29 14:55:25 -0400 |
commit | 54287f9a7a35e335b91689f5f5e7d5efcdb7dd15 (patch) | |
tree | 03b9e87671a188bbc18bb4a38a2f05f4dfdfd99c /src/mongo/s/chunk.cpp | |
parent | a06c27a9887c9dd8fc43d9e7d8727a1840292911 (diff) | |
download | mongo-54287f9a7a35e335b91689f5f5e7d5efcdb7dd15.tar.gz |
SERVER-19319 Fix a lint breakage
Diffstat (limited to 'src/mongo/s/chunk.cpp')
-rw-r--r-- | src/mongo/s/chunk.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mongo/s/chunk.cpp b/src/mongo/s/chunk.cpp index 06d64007cff..6ff1d94eed3 100644 --- a/src/mongo/s/chunk.cpp +++ b/src/mongo/s/chunk.cpp @@ -585,9 +585,6 @@ bool Chunk::splitIfShould(long dataWritten) const { log() << "autosplitted " << _manager->getns() << " shard: " << toString() << " into " << (splitCount + 1) << " (splitThreshold " << splitThreshold << ")" -#ifdef MONGO_CONFIG_DEBUG_BUILD - << " size: " << getPhysicalSize() // slow - but can be useful when debugging -#endif << (res["shouldMigrate"].eoo() ? "" : (string) " (migrate suggested" + (shouldBalance ? ")" : ", but no migrations allowed)")); |