Skip to content

Commit

Permalink
Responded to Doug's comment
Browse files Browse the repository at this point in the history
  • Loading branch information
zasweq committed Oct 25, 2023
1 parent 037ad1e commit 4d2490f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/transport/handler_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func NewServerHandlerTransport(w http.ResponseWriter, r *http.Request, stats []s

var localAddr net.Addr
if la := r.Context().Value(http.LocalAddrContextKey); la != nil {
localAddr = la.(net.Addr)
localAddr, _ = la.(net.Addr)
}
var authInfo credentials.AuthInfo
if r.TLS != nil {
Expand Down

0 comments on commit 4d2490f

Please sign in to comment.