summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mongo/db/catalog/index_builds_manager.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mongo/db/catalog/index_builds_manager.cpp b/src/mongo/db/catalog/index_builds_manager.cpp
index a1b1ad27377..303b89a1e17 100644
--- a/src/mongo/db/catalog/index_builds_manager.cpp
+++ b/src/mongo/db/catalog/index_builds_manager.cpp
@@ -253,12 +253,6 @@ Status IndexBuildsManager::commitIndexBuild(OperationContext* opCtx,
if (!status.isOK()) {
return status;
}
-
- // Eventually, we will obtain the timestamp for completing the index build from the
- // commitIndexBuild oplog entry.
- // The current logic for timestamping index completion is consistent with the
- // IndexBuilder. See SERVER-38986 and SERVER-34896.
- IndexTimestampHelper::setGhostCommitTimestampForCatalogWrite(opCtx, nss);
wunit.commit();
// Required call to clean up even though commit cleaned everything up.