summaryrefslogtreecommitdiff
path: root/src/mongo/s/mongos_options.h
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2016-04-15 18:41:32 -0400
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2016-04-20 16:31:12 -0400
commit0e45dbdbfda0ff381308b37d75235cad1da3db54 (patch)
tree5917a27620cc0c034a5e20d609917ce7660ebe21 /src/mongo/s/mongos_options.h
parentf3c0c1cc6957efb0c48b1b757c3de2f20749db02 (diff)
downloadmongo-0e45dbdbfda0ff381308b37d75235cad1da3db54.tar.gz
SERVER-23696 Get rid of SettingsType
Splits all the functionality of SettingsType into the constituent ChunkSizeSettings and BalancerSettings and moves it under the BalancerConfiguration utility.
Diffstat (limited to 'src/mongo/s/mongos_options.h')
-rw-r--r--src/mongo/s/mongos_options.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/s/mongos_options.h b/src/mongo/s/mongos_options.h
index e8eb1306b9c..b14c688e6a9 100644
--- a/src/mongo/s/mongos_options.h
+++ b/src/mongo/s/mongos_options.h
@@ -49,7 +49,7 @@ struct MongosGlobalParams {
ConnectionString configdbs;
// The max chunk size after which a chunk will be considered jumbo
- uint64_t maxChunkSizeBytes{BalancerConfiguration::kDefaultMaxChunkSizeBytes};
+ uint64_t maxChunkSizeBytes{ChunkSizeSettingsType::kDefaultMaxChunkSizeBytes};
// Whether auto-splitting is enabled
bool shouldAutoSplit{true};