From 35834150a53d6ae5b5ae0967aee970a785da862f Mon Sep 17 00:00:00 2001 From: Matt Jacobs Date: Mon, 13 Jun 2016 11:05:11 -0700 Subject: [PATCH] Increased timeout in TimeoutConcurency test to make timeout more reproducible --- .../hystrix/HystrixCommandTimeoutConcurrencyTesting.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hystrix-core/src/test/java/com/netflix/hystrix/HystrixCommandTimeoutConcurrencyTesting.java b/hystrix-core/src/test/java/com/netflix/hystrix/HystrixCommandTimeoutConcurrencyTesting.java index 0d80d59cc..4ff4e39f7 100644 --- a/hystrix-core/src/test/java/com/netflix/hystrix/HystrixCommandTimeoutConcurrencyTesting.java +++ b/hystrix-core/src/test/java/com/netflix/hystrix/HystrixCommandTimeoutConcurrencyTesting.java @@ -99,7 +99,7 @@ protected TestCommand() { @Override protected String run() throws Exception { //System.out.println(System.currentTimeMillis() + " : " + Thread.currentThread().getName() + " sleeping"); - Thread.sleep(100); + Thread.sleep(500); //System.out.println(System.currentTimeMillis() + " : " + Thread.currentThread().getName() + " awake and returning"); return "hello"; }