Commit ffc836bc authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

net/http/httptrace: clarify WroteRequest may be called multiple times

Updates #18305

Change-Id: I63b28d511df1a6c54e32c8bfc7e2264f94e38cd7
Reviewed-on: https://go-review.googlesource.com/34386Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
parent 49e5bdfe
......@@ -146,7 +146,8 @@ type ClientTrace struct {
Wait100Continue func()
// WroteRequest is called with the result of writing the
// request and any body.
// request and any body. It may be called multiple times
// in the case of retried requests.
WroteRequest func(WroteRequestInfo)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment