summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/write_commands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/commands/write_commands.cpp')
-rw-r--r--src/mongo/db/commands/write_commands.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/commands/write_commands.cpp b/src/mongo/db/commands/write_commands.cpp
index 3d78ebe912c..3de92c37fc3 100644
--- a/src/mongo/db/commands/write_commands.cpp
+++ b/src/mongo/db/commands/write_commands.cpp
@@ -667,7 +667,7 @@ public:
return;
}
// Now that the batch is prepared, make sure we clean up if we throw.
- auto batchGuard = makeGuard([&] { bucketCatalog.abort(batch); });
+ ScopeGuard batchGuard([&] { bucketCatalog.abort(batch); });
hangTimeseriesInsertBeforeWrite.pauseWhileSet();