summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenety Goh <benety@mongodb.com>2020-05-15 13:15:09 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-05-15 17:31:28 +0000
commit065d4ab364de1fc6b54a500848c5b8c33035ad22 (patch)
tree45abb32ac1c9290779f60b6ce6f8c6e0904b4ce4
parentc8708d00758ce39acb153b6b3616ad9a8a11b7bd (diff)
downloadmongo-065d4ab364de1fc6b54a500848c5b8c33035ad22.tar.gz
SERVER-48171 update fail point usage in indexbuildentryhelpers::getIndexBuildEntry()
-rw-r--r--src/mongo/db/index_build_entry_helpers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/index_build_entry_helpers.cpp b/src/mongo/db/index_build_entry_helpers.cpp
index 5e1d42fbfa3..d8df85c6d00 100644
--- a/src/mongo/db/index_build_entry_helpers.cpp
+++ b/src/mongo/db/index_build_entry_helpers.cpp
@@ -267,7 +267,7 @@ StatusWith<IndexBuildEntry> getIndexBuildEntry(OperationContext* opCtx, UUID ind
// Must not be interruptible. This fail point is used to test the scenario where the index
// build's OperationContext is interrupted by an abort, which will subsequently remove index
// build entry from the config db collection.
- hangBeforeGettingIndexBuildEntry.pauseWhileSet(/* Interruptible::notInterruptible() */);
+ hangBeforeGettingIndexBuildEntry.pauseWhileSet(Interruptible::notInterruptible());
if (!collection) {
str::stream ss;