com.netflix.zuul.exception.ZuulException: Forwarding error

原因是zuul的调用等待时间超时,需要在application.yml设置超时连接时长
加入以下代码,时间自己根据业务调整即可
ribbon:
  ReadTimeout: 600000
  ConnectTimeout: 600000
hystrix:
  command:
    default:
      execution:
        isolation:
          thread:
            timeoutInMilliseconds: 60000

 

 
posted @ 2022-08-10 10:43  迷糊桃  阅读(1113)  评论(0编辑  收藏  举报