1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2026-06-03 18:35:08 +02:00

Change ClientResponse to accept an *http.Response (#3617)

This commit is contained in:
Tyler Yahn
2023-01-26 09:21:55 -08:00
committed by GitHub
parent c0fb8dec4c
commit 604772dda3
8 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ var (
// request contained in resp. For example:
//
// append(ClientResponse(resp), ClientRequest(resp.Request)...)
func ClientResponse(resp http.Response) []attribute.KeyValue {
func ClientResponse(resp *http.Response) []attribute.KeyValue {
return hc.ClientResponse(resp)
}