fix alibaba dubbo can not get thread pool status (#967)

* fix #901

* Alibaba Dubbo can not get thread pool status
FIX #966 from https://github.com/opengoofy/hippo4j/issues/966
pull/971/head
王杰 2 years ago committed by GitHub
parent ddbf558a99
commit 1fe703011d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -65,7 +65,7 @@ public class AlibabaDubboThreadPoolAdapter implements ThreadPoolAdapter, Applica
@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;
}

Loading…
Cancel
Save