Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions service/matching/physical_task_queue_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ func newPhysicalTaskQueueManager(
pqMgr.logger,
pqMgr.throttledLogger,
e.matchingRawClient,
newFairMetricsHandler(taggedMetricsHandler),
taggedMetricsHandler,
pqMgr.counterFactory,
false,
)
Expand All @@ -217,7 +217,7 @@ func newPhysicalTaskQueueManager(
pqMgr.matchingClient,
pqMgr.taskValidator,
pqMgr.logger,
newFairMetricsHandler(taggedMetricsHandler),
taggedMetricsHandler,
partitionMgr.rateLimitManager,
pqMgr.onRateLimited,
pqMgr.MarkAlive,
Expand All @@ -237,7 +237,7 @@ func newPhysicalTaskQueueManager(
pqMgr.logger,
pqMgr.throttledLogger,
e.matchingRawClient,
newPriMetricsHandler(taggedMetricsHandler),
taggedMetricsHandler,
false,
)
var fwdr *priForwarder
Expand All @@ -257,7 +257,7 @@ func newPhysicalTaskQueueManager(
pqMgr.matchingClient,
pqMgr.taskValidator,
pqMgr.logger,
newPriMetricsHandler(taggedMetricsHandler),
taggedMetricsHandler,
partitionMgr.rateLimitManager,
pqMgr.onRateLimited,
pqMgr.MarkAlive,
Expand Down Expand Up @@ -393,7 +393,7 @@ func (c *physicalTaskQueueManagerImpl) SetupDraining() {
logger,
log.With(c.throttledLogger, backlogTagPriorityDrain),
c.partitionMgr.engine.matchingRawClient,
newPriMetricsHandler(c.metricsHandler),
c.metricsHandler,
true,
)
case *priBacklogManagerImpl:
Expand All @@ -406,7 +406,7 @@ func (c *physicalTaskQueueManagerImpl) SetupDraining() {
logger,
log.With(c.throttledLogger, backlogTagFairnessDrain),
c.partitionMgr.engine.matchingRawClient,
newFairMetricsHandler(c.metricsHandler),
c.metricsHandler,
c.counterFactory,
true,
)
Expand Down
147 changes: 0 additions & 147 deletions service/matching/pri_metrics_handler.go

This file was deleted.

Loading