最近spring cloud 报错:com.netflix.hystrix.exception.HystrixRuntimeException: UserClient#listById(List) failed and no fallback available.
解决办法:加长hystrix 命令的超时时间
hystrix:
command:
default:
execution:
isolation:
thread:
timeoutInMilliseconds: 6000
timeout:
enabled: false
、