Fix order of TagInfo constructor arguments

This commit is contained in:
sfc-gh-tclinkenbeard 2022-03-22 17:06:33 -07:00
parent 56026b5b6f
commit 30651bf2c6
1 changed files with 1 additions and 1 deletions

View File

@ -999,7 +999,7 @@ void StorageQueueInfo::refreshCommitCost(double elapsed) {
// TraceEvent("RefreshSSCommitCost").detail("TotalWriteCost", totalWriteCost).detail("TotalWriteOps",totalWriteOps);
ASSERT_GT(totalWriteCosts, 0);
maxBusyness = double(maxCost.getCostSum()) / totalWriteCosts;
busiestWriteTags.emplace_back(busiestTag, maxBusyness, maxRate);
busiestWriteTags.emplace_back(busiestTag, maxRate, maxBusyness);
}
TraceEvent("BusiestWriteTag", id)