Skip to content

Commit

Permalink
Merge pull request #3175 from alrs/fix-dropped-err-in-kops-cmd-package
Browse files Browse the repository at this point in the history
Automatic merge from submit-queue

Fix dropped error in kops cmd package

This fixes a dropped error variable in the kops cmd package.
  • Loading branch information
Kubernetes Submit Queue authored Aug 10, 2017
2 parents 4119cc5 + 5bdd7f2 commit 386402e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cmd/kops/get.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,9 @@ func RunGet(context Factory, out io.Writer, options *GetOptions) error {
args := make([]string, 0)

clusters, err := buildClusters(args, clusterList)
if err != nil {
return fmt.Errorf("error on buildClusters(): %v", err)
}

ig, err := client.InstanceGroupsFor(cluster).List(metav1.ListOptions{})
if err != nil {
Expand Down

0 comments on commit 386402e

Please sign in to comment.