Bug fix, metadata read futures were moved to a vector but then not waited on.

This commit is contained in:
Stephen Atherton 2018-12-17 13:13:35 -08:00
parent dac1827d23
commit 9ef9041fba
1 changed files with 2 additions and 0 deletions

View File

@ -538,6 +538,8 @@ public:
metaReads.push_back(store(bc->logEndVersion().get(), metaLogEnd));
}
Void _ = wait(waitForAll(metaReads));
TraceEvent("BackupContainerMetadata")
.detail("URL", bc->getURL())
.detail("ExpiredEndVersion", metaExpiredEnd.orDefault(-1))