Merge pull request #9643 from sfc-gh-tclinkenbeard/fix-arg-type
Fix argument type in `ProxyCommitData::updateSSTagCost`
This commit is contained in:
commit
1b61a2bc5e
|
@ -303,7 +303,7 @@ struct ProxyCommitData {
|
|||
latencyBandConfig = newLatencyBandConfig;
|
||||
}
|
||||
|
||||
void updateSSTagCost(const UID& id, const TagSet& tagSet, MutationRef m, int cost) {
|
||||
void updateSSTagCost(const UID& id, const TagSet& tagSet, MutationRef m, uint64_t cost) {
|
||||
auto [it, _] = ssTrTagCommitCost.try_emplace(id, TransactionTagMap<TransactionCommitCostEstimation>());
|
||||
|
||||
for (auto& tag : tagSet) {
|
||||
|
|
Loading…
Reference in New Issue