Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Xinyu Liu committed Aug 21, 2024
1 parent 567edcd commit dd10f9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void setAggregateTime(SystemStreamPartition systemStreamPartition, long time) {

void setQuorumCount(SystemStream stream, int quorumCount) {
final Gauge<Integer> gauge = quorumCounts.computeIfAbsent(stream,
ssp -> newGauge(String.format("%s-aggr-watermark", ssp.getStream()), 0));
ssp -> newGauge(String.format("%s-quorum-count", ssp.getStream()), 0));
gauge.set(quorumCount);
}
}

0 comments on commit dd10f9b

Please sign in to comment.