为什么我的 Postman 和 nginX 中的 502 上的套接字挂起,而 Gin-Gonic 在这两种情况下都返回 StatusOk?

问题描述 投票:0回答:1

为了简化我的问题,我有一条很长的路线,可能需要长达 2 分钟才能返回响应。现在这是我的示例 http 处理程序:

func GetHealth(svc *service.Hotel) gin.HandlerFunc {
   return func(c *gin.Context) {
      time.Sleep(30 * time.Second)
      c.JSON(200, gin.H{})
   }
}

现在,当我拨打

[GET] /health
路线时,邮递员会在记录的 gin-gonic 返回响应的确切时间返回
Error: socket hang up
200 Ok

[GIN] 2024/01/24 - 11:10:58 | 200 | 30.084587215s |             ::1 | GET      "/health"

现在,同一个项目在 nginX 后面作为反向代理,当我的服务已记录时,我在 API 响应上收到 502 nginX 错误

200 Ok
.

问题是为什么我在 gin-gonic 已成功返回响应时在客户端收到错误?我该如何解决这个问题?

我使用了

github.com/gin-contrib/timeout
库,因为我认为它与路线超时有关,但没有成功。

go timeout go-gin
1个回答
0
投票

gin-gonic
中,您可以在
WriteTimeout
上设置
http.Server
,以防止
socket hang up
或 nginx 502。

有趣的是,即使超时,它总是记录 200,但客户端会收到错误:

srv := &http.Server{
        Addr: ":9000",
        // Good practice to set timeouts to avoid Slowloris attacks.
        WriteTimeout: time.Second * 120, // THIS TIMEOUT NEEDS TO BE SET
        ReadTimeout:  time.Second * 15,
        IdleTimeout:  time.Second * 60,
        Handler:      router,
    }
© www.soinside.com 2019 - 2024. All rights reserved.