Caused by: com.netflix.hystrix.exception.HystrixRuntimeException: order timed-out and no fallback av
api-gateway中:原因:Hystrix缺省超时判断为1秒钟,由于网络问题,有些请求超过1秒钟之后才接收到。解决:配置修改请求超时时长(application.yml):hystrix: command: default: execution: isolation: thread: timeoutInMilliseconds: 30000 #缺省为...