Skip to content

Commit

Permalink
KAFKA-14133: Replace EasyMock with Mockito in WorkerCoordinatorTest a…
Browse files Browse the repository at this point in the history
…nd RootResourceTest (#12509)


Reviewers: Mickael Maison <mickael.maison@gmail.com>, Dalibor Plavcic <dalibor.os@proton.me>
  • Loading branch information
yashmayya committed Aug 22, 2022
1 parent 519d8ac commit ddb7fdd
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 160 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -373,10 +373,10 @@ public WorkerCoordinatorMetrics(Metrics metrics, String metricGrpPrefix) {

metrics.addMetric(metrics.metricName("assigned-connectors",
this.metricGrpName,
"The number of connector instances currently assigned to this consumer"), numConnectors);
"The number of connector instances currently assigned to this worker"), numConnectors);
metrics.addMetric(metrics.metricName("assigned-tasks",
this.metricGrpName,
"The number of tasks currently assigned to this consumer"), numTasks);
"The number of tasks currently assigned to this worker"), numTasks);
}
}

Expand Down

0 comments on commit ddb7fdd

Please sign in to comment.