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

Commit

Permalink
🐛 Fix hidden error in apply application (#734)
Browse files Browse the repository at this point in the history
* 🐛 Fix hidden error in apply application

* Add release notes
  • Loading branch information
kmoberg committed Oct 29, 2021
1 parent 48c3040 commit 41be622
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cmd/okctl/apply_application.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ func buildApplyApplicationCommand(o *okctl.Okctl) *cobra.Command {

state := o.StateHandlers(o.StateNodes())

services, _ := o.ClientServices(state)
services, err := o.ClientServices(state)
if err != nil {
return fmt.Errorf("acquiring client services: %w", err)
}

spin, err := spinner.New("applying application", o.Err)
if err != nil {
Expand Down
1 change: 1 addition & 0 deletions docs/release_notes/0.0.68.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
KM416 🐛 Fix filepermissions for kubeconfig (#709)

🐛 Improve error message if forward postgres parameter -n is missing (#732)
🐛 Fix hidden error in apply application (#732)

## Changes

Expand Down

0 comments on commit 41be622

Please sign in to comment.