Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
EVEREST-838 remove unneeded conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
recharte committed Feb 14, 2024
1 parent 7cd2c4d commit c417051
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions pkg/kubernetes/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -224,11 +224,7 @@ func (c *Client) initOperatorClients() error {
}
c.customClientSet = customClient
_, err = c.GetServerVersion()
if err != nil {
return err
}

return nil
return err
}

func (c *Client) kubeClient() (client.Client, error) { //nolint:ireturn,nolintlint
Expand Down

0 comments on commit c417051

Please sign in to comment.