Skip to content

Commit 4a0c406

Browse files
committed
Correct redundant nil check
Signed-off-by: Gábor Lipták <[email protected]>
1 parent 133ac5c commit 4a0c406

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

remotes/docker/authorizer.go

+1-5
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,7 @@ func (a *dockerAuthorizer) AddResponses(ctx context.Context, responses []*http.R
8080

8181
// TODO(dmcg): Store challenge, not token
8282
// Move token fetching to authorize
83-
if err := a.setTokenAuth(ctx, host, c.parameters); err != nil {
84-
return err
85-
}
86-
87-
return nil
83+
return a.setTokenAuth(ctx, host, c.parameters)
8884
} else if c.scheme == basicAuth {
8985
// TODO: Resolve credentials on authorize
9086
username, secret, err := a.credentials(host)

0 commit comments

Comments
 (0)