我已经实现了以下代码,用于在Go中重试http发表请求。
在第二次重试尝试中,我总是将请求正文设为null。我试过推迟req.body.close(),但是它不起作用。谁能帮我解决这个问题?
func httpRetry(req *http.Request, timeOut time.Duration, retryAttempts int, retryDelay time.Duration) (*http.Response, error) {
attempts := 0
for {
attempts++
fmt.Println("Attempt - ", attempts)
statusCode := 0
tr := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
var netClient = &http.Client{
Timeout: time.Second * timeOut,
Transport: tr,
}
fmt.Println("ret 88888 ", req)
response, err := netClient.Do(req)
//defer req.Body.Close()
fmt.Println(response, " dd", err)
if response != nil {
fmt.Println(response.StatusCode)
statusCode = response.StatusCode
}
if err != nil {
fmt.Println(err)
//return response, err
}
if err == nil && statusCode == http.StatusOK {
return response, nil
}
if err == nil && response != nil {
defer req.Body.Close()
}
retry := retryDecision(statusCode, attempts, retryAttempts)
if !retry {
return response, err
}
fmt.Println("Retry Attempt number", attempts)
time.Sleep(retryDelay * time.Second)
fmt.Println("After Delay")
}
}
func retryDecision(responseStatusCode int, attempts int, retryAttempts int) bool {
retry := false
fmt.Println("Retry Decision 0 ", responseStatusCode, attempts, retryAttempts)
errorCodeForRetry :=
[]int{http.StatusInternalServerError, http.StatusUnauthorized, http.StatusNotImplemented, http.StatusBadGateway, http.StatusServiceUnavailable, http.StatusGatewayTimeout}
for _, code := range errorCodeForRetry {
if code == responseStatusCode && attempts <= retryAttempts {
retry = true
}
}
fmt.Println("Retry Decision ", retry)
return retry
}
请在下面找到错误详细信息
Attempt - 1 ret 88888 &{POST https://localhost:8080/logs/ HTTP/1.1 1 1 map[] {{"converstnId":"","boId":"","msgId":"","serviceName":"","headers":"","properties":"","message":"","body":"aa","exceptionMessage":"","logType":"","exceptionStackTrace":""}}
0x5ec890 170 []错误的地图[]地图[]地图[]
}Attempt - 2 ret 88888 &{POST https://localhost:8080/logs/ HTTP/1.1 1 1 map[] {} 0x5ec890 170 [] false map[] map[] <nil> map[]
}
答案 0 :(得分:4)
要能够重用其主体为非零的请求,首先需要确保该主体(不是由您而是由客户端的RoundTripper)已被关闭。
文档的相关部分:
RoundTrip必须始终关闭主体,包括出现错误时,但 取决于实现,甚至可以在单独的goroutine中执行此操作 RoundTrip返回后。这意味着要重用 后续请求的主体必须安排等待Close呼叫 在这样做之前。
在重用没有正文的请求(例如GET)时,您仍然需要小心:
如果请求没有正文,则只要 直到RoundTrip失败或 Response.Body已关闭。
来自here。
只要您确定RoundTripper关闭了主体,您可以做的是在每次迭代的顶部重置请求的主体。像这样:
func httpRetry(req *http.Request, timeOut time.Duration, retryAttempts int, retryDelay time.Duration) (*http.Response, error) {
// ...
data, err := ioutil.ReadAll(req.Body)
if err != nil {
return nil, err
}
// close the original body, we don't need it anymore
if err := req.Body.Close(); err != nil {
return err
}
for {
req.Body = ioutil.NopCloser(bytes.NewReader(data)) // reset the body
// ... your code ...
}
// ...
}