summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/start_chunk_clone_request.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/s/start_chunk_clone_request.h')
-rw-r--r--src/mongo/db/s/start_chunk_clone_request.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/mongo/db/s/start_chunk_clone_request.h b/src/mongo/db/s/start_chunk_clone_request.h
index f1ff3222b03..171639c0c8a 100644
--- a/src/mongo/db/s/start_chunk_clone_request.h
+++ b/src/mongo/db/s/start_chunk_clone_request.h
@@ -72,8 +72,7 @@ public:
const BSONObj& chunkMinKey,
const BSONObj& chunkMaxKey,
const BSONObj& shardKeyPattern,
- const MigrationSecondaryThrottleOptions& secondaryThrottle,
- bool resumableRangeDeleterDisabled);
+ const MigrationSecondaryThrottleOptions& secondaryThrottle);
const NamespaceString& getNss() const {
return _nss;
@@ -128,10 +127,6 @@ public:
return _secondaryThrottle;
}
- bool resumableRangeDeleterDisabled() const {
- return _resumableRangeDeleterDisabled;
- }
-
private:
StartChunkCloneRequest(NamespaceString nss,
MigrationSessionId sessionId,
@@ -163,8 +158,6 @@ private:
// The parsed secondary throttle options
MigrationSecondaryThrottleOptions _secondaryThrottle;
-
- bool _resumableRangeDeleterDisabled{false};
};
} // namespace mongo