Skip to content

Commit

Permalink
[ISSUE apache#4141] Fix the GRPC subscribe error
Browse files Browse the repository at this point in the history
  • Loading branch information
yiqf committed Jun 20, 2023
1 parent 8843df2 commit c6d422a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,7 @@ public void shutdown() throws Exception {
}

public EventMeshConsumer getEventMeshConsumer(final String consumerGroup) {
return consumerTable.computeIfAbsent(consumerGroup, key ->
consumerTable.put(consumerGroup, new EventMeshConsumer(eventMeshGrpcServer, consumerGroup)));
return consumerTable.computeIfAbsent(consumerGroup, key -> new EventMeshConsumer(eventMeshGrpcServer, consumerGroup));
}

public synchronized void registerClient(final ConsumerGroupClient newClient) {
Expand Down

0 comments on commit c6d422a

Please sign in to comment.