com.netflix.hystrix.exception.HystrixRuntimeException: UserClient#listById(List) failed and no fallback available.

发布于 / 随记 / 0条评论 / Tags: none / 3 次浏览

最近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

    评论区(暂无评论)