We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa1233f commit d85f99aCopy full SHA for d85f99a
src/mongo/s/type_settings.h
@@ -221,7 +221,7 @@ namespace mongo {
221
if (_isSecondaryThrottleSet) {
222
return _secondaryThrottle;
223
} else {
224
- dassert(secondaryThrottle.hasDefault());
+ dassert(deprecated_secondaryThrottle.hasDefault());
225
return deprecated_secondaryThrottle.getDefault();
226
}
227
@@ -242,7 +242,7 @@ namespace mongo {
242
// Calling get*() methods when the member is not set and has no default results in undefined
243
// behavior
244
BSONObj getMigrationWriteConcern() const {
245
- dassert (_isBalancerWriteConcernSet);
+ dassert (_isMigrationWriteConcernSet);
246
return _migrationWriteConcern;
247
248
0 commit comments