Skip to content

Commit dd64dea

Browse files
committed
fix lint issue
1 parent 8ea4922 commit dd64dea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extension/azureauthextension/extension.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ func (r *roundTripper) RoundTrip(request *http.Request) (*http.Response, error)
223223
if req.URL == nil {
224224
return nil, errors.New("unexpected nil request URL")
225225
}
226-
host := req.URL.Host
226+
host = req.URL.Host
227227
if host == "" {
228228
return nil, errors.New("unexpected empty Host in request URL")
229229
}

0 commit comments

Comments
 (0)