diff options
author | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2016-04-15 18:41:32 -0400 |
---|---|---|
committer | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2016-04-20 16:31:12 -0400 |
commit | 0e45dbdbfda0ff381308b37d75235cad1da3db54 (patch) | |
tree | 5917a27620cc0c034a5e20d609917ce7660ebe21 /src/mongo/s/mongos_options.h | |
parent | f3c0c1cc6957efb0c48b1b757c3de2f20749db02 (diff) | |
download | mongo-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.h | 2 |
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}; |