summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/migration_destination_manager.h
diff options
context:
space:
mode:
authorAlex Taskov <alex.taskov@mongodb.com>2020-03-09 13:57:08 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-03-09 18:09:41 +0000
commitbb32cfb51f36b3d088c5e1f78cebb5b9ab29d498 (patch)
treec2d9e8d77509fdcbd54ae41ae4d4c628c53368bf /src/mongo/db/s/migration_destination_manager.h
parent790356f7cdc80829bfd05fa981b4c265ad976c71 (diff)
downloadmongo-bb32cfb51f36b3d088c5e1f78cebb5b9ab29d498.tar.gz
SERVER-46507 Convert member variable from migrationId in MigrationDestinationManager to boost::optional
Diffstat (limited to 'src/mongo/db/s/migration_destination_manager.h')
-rw-r--r--src/mongo/db/s/migration_destination_manager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/s/migration_destination_manager.h b/src/mongo/db/s/migration_destination_manager.h
index 5182ace7ea9..ea322655509 100644
--- a/src/mongo/db/s/migration_destination_manager.h
+++ b/src/mongo/db/s/migration_destination_manager.h
@@ -206,7 +206,7 @@ private:
// FCV 4.4 protocol are in use and the disableResumableRangeDeleter option is off.
bool _enableResumableRangeDeleter{true};
- UUID _migrationId;
+ boost::optional<UUID> _migrationId;
LogicalSessionId _lsid;
TxnNumber _txnNumber;
NamespaceString _nss;