diff --git a/hystrix-core/src/main/java/com/netflix/hystrix/HystrixCommandMetrics.java b/hystrix-core/src/main/java/com/netflix/hystrix/HystrixCommandMetrics.java index 03b150cba..797c5e48f 100644 --- a/hystrix-core/src/main/java/com/netflix/hystrix/HystrixCommandMetrics.java +++ b/hystrix-core/src/main/java/com/netflix/hystrix/HystrixCommandMetrics.java @@ -189,13 +189,6 @@ public static Collection getInstances() { this.threadPoolKey = threadPoolKey; this.properties = properties; - Func0 concurrentExecutionThunk = new Func0() { - @Override - public Integer call() { - return HystrixCommandMetrics.getInstance(key).concurrentExecutionCount.get(); - } - }; - healthCountsStream = HealthCountsStream.getInstance(key, properties); rollingCommandEventCounterStream = RollingCommandEventCounterStream.getInstance(key, properties); cumulativeCommandEventCounterStream = CumulativeCommandEventCounterStream.getInstance(key, properties);