Explorar el Código

feat: flush response writer after copying body

feitianbubu hace 2 meses
padre
commit
d474ed4778
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      service/http.go

+ 1 - 0
service/http.go

@@ -57,4 +57,5 @@ func IOCopyBytesGracefully(c *gin.Context, src *http.Response, data []byte) {
 	if err != nil {
 		logger.LogError(c, fmt.Sprintf("failed to copy response body: %s", err.Error()))
 	}
+	c.Writer.Flush()
 }