Merge pull request #8257 from sfc-gh-tclinkenbeard/fix-compound-workload-check

Fix `CompoundWorkload::check` method
This commit is contained in:
Markus Pilman 2022-09-20 22:49:18 -06:00 committed by GitHub
commit 833a1950b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ Future<bool> CompoundWorkload::check(Database const& cx) {
.detail("Name", workloadName)
.detail("Remaining", *wCount)
.detail("Phase", "End");
return true;
return ret;
},
workload.check(cx));
};