summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Russotto <matthew.russotto@mongodb.com>2022-11-28 15:32:02 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-12-09 15:51:37 +0000
commit4828567d0c1832068e0dc17e345d4dc0f88401d0 (patch)
treeabfa41ae4315ccf9764879f3e727d42d56e4172a
parent198cd42e240e7ae8d2cc06250dccb67deda169ad (diff)
downloadmongo-4828567d0c1832068e0dc17e345d4dc0f88401d0.tar.gz
SERVER-71247 Make final methods in StubMongoProcessInterface non-final.
(cherry picked from commit 1b48004aa0904b8e7610770fe3ab14812923ae9b)
-rw-r--r--src/mongo/db/pipeline/process_interface/stub_mongo_process_interface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/pipeline/process_interface/stub_mongo_process_interface.h b/src/mongo/db/pipeline/process_interface/stub_mongo_process_interface.h
index d889727d6bb..12466dfb1de 100644
--- a/src/mongo/db/pipeline/process_interface/stub_mongo_process_interface.h
+++ b/src/mongo/db/pipeline/process_interface/stub_mongo_process_interface.h
@@ -243,11 +243,11 @@ public:
return BackupCursorState{UUID::gen(), boost::none, nullptr, {}};
}
- void closeBackupCursor(OperationContext* opCtx, const UUID& backupId) final {}
+ void closeBackupCursor(OperationContext* opCtx, const UUID& backupId) override {}
BackupCursorExtendState extendBackupCursor(OperationContext* opCtx,
const UUID& backupId,
- const Timestamp& extendTo) final {
+ const Timestamp& extendTo) override {
return {{}};
}