diff options
author | Samy Lanka <samy.lanka@mongodb.com> | 2019-01-14 20:49:48 -0500 |
---|---|---|
committer | Samy Lanka <samy.lanka@mongodb.com> | 2019-01-17 15:57:29 -0500 |
commit | d764e1b6346726fc2e9259ba294d029d531ff38e (patch) | |
tree | e50e5dc8a61f42f1cbcad1deb854adf98ede8693 /src/mongo/db/repl/bgsync.h | |
parent | 9e87f6e272df4f97013dfccc4018efb79f68653a (diff) | |
download | mongo-d764e1b6346726fc2e9259ba294d029d531ff38e.tar.gz |
SERVER-36815 Remove references to oplog entry's hash field
Diffstat (limited to 'src/mongo/db/repl/bgsync.h')
-rw-r--r-- | src/mongo/db/repl/bgsync.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mongo/db/repl/bgsync.h b/src/mongo/db/repl/bgsync.h index 2a92a59a85c..b310417dcc1 100644 --- a/src/mongo/db/repl/bgsync.h +++ b/src/mongo/db/repl/bgsync.h @@ -201,7 +201,7 @@ private: // restart syncing void start(OperationContext* opCtx); - OpTimeWithHash _readLastAppliedOpTimeWithHash(OperationContext* opCtx); + OpTime _readLastAppliedOpTime(OperationContext* opCtx); // This OplogApplier applies oplog entries fetched from the sync source. OplogApplier* const _oplogApplier; @@ -235,9 +235,6 @@ private: OpTime _lastOpTimeFetched; // (M) - // lastFetchedHash is used to match ops to determine if we need to rollback, when a secondary. - long long _lastFetchedHash = 0LL; // (M) - // Thread running producerThread(). std::unique_ptr<stdx::thread> _producerThread; // (M) |