Skip to content

Commit

Permalink
Return unchecked error (errcheck lint)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Hu authored and Zachary Scott committed Aug 31, 2018
1 parent 162afbd commit a24fd47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/orb.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ func listNamespaceOrbs(namespace string) error {
ctx := context.Background()
err := api.ListNamespaceOrbs(ctx, Logger, namespace)
if err != nil {
errors.Wrapf(err, "Failed to list orbs in namespace %s", namespace)
return errors.Wrapf(err, "Failed to list orbs in namespace %s", namespace)
}
return nil
}
Expand Down

0 comments on commit a24fd47

Please sign in to comment.