We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa2536f commit f207dc5Copy full SHA for f207dc5
jwt/config.go
@@ -84,7 +84,7 @@ func (js jwtSource) Token() (*oauth2.Token, error) {
84
if err != nil {
85
return nil, fmt.Errorf("oauth2: cannot fetch token: %v", err)
86
}
87
- defer resp.Body.Close()
+ defer resp.Body.Close() // nolint:errcheck
88
body, err := io.ReadAll(io.LimitReader(resp.Body, 1<<20))
89
90
0 commit comments