报错
com.netflix.zuul.exception.ZuulException: Hystrix Readed time out
- 解决办法,zuul模块的yml配置文件增加
ribbon:
ConnectTimeout: 5000 # 连接超时时间(ms)
ReadTimeout: 5000 # 通信超时时间(ms)
hystrix:
command:
default:
execution:
isolation:
thread:
timeoutInMilliseconds: 60000 # 设置hystrix的超时时间为6000ms
标签:5000,Java,hystrix,ms,zuul,超时
From: https://www.cnblogs.com/wangjinkui/p/16895437.html