hystrix设置超时时间

feign:
  file_api:
  hystrix:
    enabled: true
hystrix:
  command:
    default: #也可以针对多个服务
      execution:
        timeout:
          enabled: true
        isolation:
          thread:
            timeoutInMilliseconds: 20000 # 设置hystrix的超时时间为4000ms

你可能感兴趣的:(JAVA,#,springcloud,hystrix设置超时时间)