summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/collection_cloner.h
diff options
context:
space:
mode:
authorGabriel Marks <gabriel.marks@mongodb.com>2022-01-04 23:12:00 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-01-04 23:41:46 +0000
commita29535aaa54d6ca2ec7f87cea34ac4138ae8803d (patch)
tree2c82ecfea8edb3975a64a73a578c21a8ea73965a /src/mongo/db/repl/collection_cloner.h
parentfdca8a8d628d5480e3f552f86ce89aa0d234741f (diff)
downloadmongo-a29535aaa54d6ca2ec7f87cea34ac4138ae8803d.tar.gz
SERVER-61505 Remove WireVersion::RESUMABLE_INITIAL_SYNC
Diffstat (limited to 'src/mongo/db/repl/collection_cloner.h')
-rw-r--r--src/mongo/db/repl/collection_cloner.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mongo/db/repl/collection_cloner.h b/src/mongo/db/repl/collection_cloner.h
index 5ca0057fba1..80d8a9d72bc 100644
--- a/src/mongo/db/repl/collection_cloner.h
+++ b/src/mongo/db/repl/collection_cloner.h
@@ -226,12 +226,6 @@ private:
*/
void runQuery();
- /**
- * Used to terminate the clone when we encounter a fatal error during a non-resumable query.
- * Throws.
- */
- void abortNonResumableClone(const Status& status);
-
// All member variables are labeled with one of the following codes indicating the
// synchronization rules for accessing them.
//
@@ -266,9 +260,6 @@ private:
// like _documentsToInsert, is destroyed after those threads exit.
TaskRunner _dbWorkTaskRunner; // (R)
- // Does the sync source support resumable queries? (wire version 4.4+)
- bool _resumeSupported = false; // (X)
-
// The resumeToken used to resume after network error.
boost::optional<BSONObj> _resumeToken; // (X)