summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/backup_cursor_hooks.h
diff options
context:
space:
mode:
authorXiangyu Yao <xiangyu.yao@mongodb.com>2018-11-13 13:37:54 -0500
committerXiangyu Yao <xiangyu.yao@mongodb.com>2018-11-15 09:57:41 -0500
commit96fac450b996d2f038ae8f20883f34e857b6bd96 (patch)
treeb26cd78dafde54b0474ff91481f328bdd9db6af0 /src/mongo/db/storage/backup_cursor_hooks.h
parent9f2d9ce70ecf475386ead7374bf749e0f231c294 (diff)
downloadmongo-96fac450b996d2f038ae8f20883f34e857b6bd96.tar.gz
SERVER-38090 Put a backup identifier to the output of $backupCursor
Diffstat (limited to 'src/mongo/db/storage/backup_cursor_hooks.h')
-rw-r--r--src/mongo/db/storage/backup_cursor_hooks.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/storage/backup_cursor_hooks.h b/src/mongo/db/storage/backup_cursor_hooks.h
index 7c27e2f27d6..658ae16370c 100644
--- a/src/mongo/db/storage/backup_cursor_hooks.h
+++ b/src/mongo/db/storage/backup_cursor_hooks.h
@@ -64,7 +64,7 @@ public:
virtual BackupCursorState openBackupCursor(OperationContext* opCtx);
- virtual void closeBackupCursor(OperationContext* opCtx, std::uint64_t cursorId);
+ virtual void closeBackupCursor(OperationContext* opCtx, UUID backupId);
virtual bool isBackupCursorOpen() const;
};