Skip to content

Commit

Permalink
Merge pull request #592 from apigee/issue591
Browse files Browse the repository at this point in the history
bug: fixes err val when not deployed #591
  • Loading branch information
ssvaidyanathan authored Dec 3, 2024
2 parents fe94c29 + 2f2d8dd commit d764e6a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions internal/client/apis/apis.go
Original file line number Diff line number Diff line change
Expand Up @@ -707,6 +707,7 @@ func Wait(name string, revision int) error {
clilog.Info.Println("Proxy deployment completed with status: ", respMap["state"])
default:
clilog.Info.Println("Proxy deployment failed with status: ", respMap["state"])
err = fmt.Errorf("proxy deployment failed with status: %s", respMap["state"])
}

return false
Expand Down

0 comments on commit d764e6a

Please sign in to comment.