diff options
author | Gabriel Marks <gabriel.marks@mongodb.com> | 2022-01-04 23:12:00 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2022-01-04 23:41:46 +0000 |
commit | a29535aaa54d6ca2ec7f87cea34ac4138ae8803d (patch) | |
tree | 2c82ecfea8edb3975a64a73a578c21a8ea73965a /src/mongo/db/repl/collection_cloner.h | |
parent | fdca8a8d628d5480e3f552f86ce89aa0d234741f (diff) | |
download | mongo-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.h | 9 |
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) |