Closed alibbbian closed 2 years ago
I'm facing the same issue. Defining the value via yaml does not work, defining it via environment variable works.
I'm facing the same issue. Defining the value via yaml does not work, defining it via environment variable works.
my problem is less this:
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-archaius</artifactId>
add this, now it works
org.springframework.cloud:spring-cloud-starter-netflix-hystrix:2.2.6.RELEASE org.springframework.boot:spring-boot-starter-parent:2.5.7 spring-cloud.version=2020.0.4
application-dev.yml :
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 8000
not work
System.setProperty("hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds", "8000");
it works, and any other way?