summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/config_server_op_observer.h
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2021-02-21 06:25:32 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-02-23 09:00:04 +0000
commit3ab41506ca75092c5d71877791b5b07016c2d160 (patch)
tree8b311cceb77b997c5baaf1954ab700266cbb5fb1 /src/mongo/db/s/config_server_op_observer.h
parent1584e61edb40309c1b9b9093300962b240230c8d (diff)
downloadmongo-3ab41506ca75092c5d71877791b5b07016c2d160.tar.gz
SERVER-31540 Remove usages of boost::optional<UUID> from the collMod path
Diffstat (limited to 'src/mongo/db/s/config_server_op_observer.h')
-rw-r--r--src/mongo/db/s/config_server_op_observer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/s/config_server_op_observer.h b/src/mongo/db/s/config_server_op_observer.h
index 9c8a8a67d2d..c8e81aa478d 100644
--- a/src/mongo/db/s/config_server_op_observer.h
+++ b/src/mongo/db/s/config_server_op_observer.h
@@ -116,7 +116,7 @@ public:
void onCollMod(OperationContext* opCtx,
const NamespaceString& nss,
- OptionalCollectionUUID uuid,
+ const UUID& uuid,
const BSONObj& collModCmd,
const CollectionOptions& oldCollOptions,
boost::optional<IndexCollModInfo> indexInfo) override {}