From e2a720d00b44eda778c3fe95d2850c89e99bcffd Mon Sep 17 00:00:00 2001 From: Matt Jacobs Date: Mon, 9 Nov 2015 17:03:27 -0800 Subject: [PATCH] Added call to HystrixPlugins.reset() in HystrixCommandTestWithCustomConcurrencyStrategy --- .../hystrix/HystrixCommandTestWithCustomConcurrencyStrategy.java | 1 + 1 file changed, 1 insertion(+) diff --git a/hystrix-core/src/test/java/com/netflix/hystrix/HystrixCommandTestWithCustomConcurrencyStrategy.java b/hystrix-core/src/test/java/com/netflix/hystrix/HystrixCommandTestWithCustomConcurrencyStrategy.java index 662c493e8..093b85758 100644 --- a/hystrix-core/src/test/java/com/netflix/hystrix/HystrixCommandTestWithCustomConcurrencyStrategy.java +++ b/hystrix-core/src/test/java/com/netflix/hystrix/HystrixCommandTestWithCustomConcurrencyStrategy.java @@ -41,6 +41,7 @@ public void init() { public void reset() { HystrixRequestContext.setContextOnCurrentThread(null); HystrixPropertiesFactory.reset(); + HystrixPlugins.reset(); } /**