Skip to content

Commit

Permalink
Merge branch 'master' into luxe/remove_dequeue_platform_constants
Browse files Browse the repository at this point in the history
  • Loading branch information
luxe committed Jun 10, 2021
2 parents 6e2c8c1 + d3a3fba commit 9136326
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -1433,6 +1433,7 @@ public boolean canPrequeue() throws IOException {

@Override
public BackplaneStatus backplaneStatus(Instance instance) throws IOException {
Set<String> workers = getWorkers();
return client.call(
jedis ->
BackplaneStatus.newBuilder()
Expand All @@ -1441,7 +1442,7 @@ public BackplaneStatus backplaneStatus(Instance instance) throws IOException {
.setBlockedActionsSize(blockedActions.size(jedis))
.setBlockedInvocationsSize(blockedInvocations.size(jedis))
.setDispatchedOperations(getDispatchedOperationsStatus(jedis, instance))
.addAllActiveWorkers(workerSet)
.addAllActiveWorkers(workers)
.build());
}

Expand Down

0 comments on commit 9136326

Please sign in to comment.