Skip to content

Commit

Permalink
bug: fixes err val when not deployed #591
Browse files Browse the repository at this point in the history
  • Loading branch information
srinandan committed Dec 3, 2024
1 parent fe94c29 commit 2f2d8dd
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 2f2d8dd

Please sign in to comment.