Increased hystrix tmieouts

This commit is contained in:
Marcin Grzejszczak
2018-01-29 13:06:09 +01:00
parent b8bd8fab87
commit 5b13fc0c5e

View File

@@ -68,7 +68,8 @@ import static org.assertj.core.api.BDDAssertions.then;
@SpringBootTest(classes = FeignClientServerErrorTests.TestConfiguration.class,
webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@TestPropertySource(properties = { "spring.application.name=fooservice" ,
"feign.hystrix.enabled=true", "spring.sleuth.http.legacy.enabled=true"})
"feign.hystrix.enabled=true", "spring.sleuth.http.legacy.enabled=true",
"hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds=60000"})
public class FeignClientServerErrorTests {
@Autowired TestFeignInterface feignInterface;