Skip to content

Commit

Permalink
fix alibaba dubbo can not get thread pool status (#967)
Browse files Browse the repository at this point in the history
* fix #901

* Alibaba Dubbo can not get thread pool status
FIX #966 from #966
  • Loading branch information
iwangjie authored Nov 10, 2022
1 parent ddbf558 commit 1fe7030
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public ThreadPoolAdapterState getThreadPoolState(String identify) {
@Override
public List<ThreadPoolAdapterState> getThreadPoolStates() {
List<ThreadPoolAdapterState> threadPoolAdapterStates = new ArrayList<>();
DUBBO_PROTOCOL_EXECUTOR.forEach((kel, val) -> threadPoolAdapterStates.add(getThreadPoolState(String.valueOf(val))));
DUBBO_PROTOCOL_EXECUTOR.forEach((key, val) -> threadPoolAdapterStates.add(getThreadPoolState(String.valueOf(key))));
return threadPoolAdapterStates;
}

Expand Down

0 comments on commit 1fe7030

Please sign in to comment.