Skip to content

Commit

Permalink
Fix respawnCount
Browse files Browse the repository at this point in the history
  • Loading branch information
armanbilge authored Dec 20, 2024
1 parent 2dc9288 commit 202904a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ object WorkStealingPoolMetrics {
def parkedCount(): Long = metrics.getParkedCount()
def polledCount(): Long = metrics.getPolledCount()
def blockingCount(): Long = metrics.getBlockingCount()
def respawnCount(): Long = metrics.getBlockingCount()
def respawnCount(): Long = metrics.getRespawnCount()

val localQueue: LocalQueueMetrics = localQueueMetrics(wstp.localQueues(index))
val timerHeap: TimerHeapMetrics = timerHeapMetrics(wstp.sleepers(index))
Expand Down

0 comments on commit 202904a

Please sign in to comment.