Skip to content

Commit

Permalink
Merge branch 'master' into sauterp/sc-75097/cli-implement-reset-passw…
Browse files Browse the repository at this point in the history
…ord-egov2
  • Loading branch information
sauterp authored Sep 6, 2023
2 parents 483ffee + 8783b0f commit 6e224ed
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,16 @@

- compute instance: implement reset-password command #536

## 1.72.2

### Improvements

- sks show: display whether auto-upgrade is enabled #534

### Bug Fixes

- config add: fix adding new config (#537)

## 1.72.1

### Deprecations
Expand Down
3 changes: 2 additions & 1 deletion cmd/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,8 @@ func chooseZone(client *egoscale.Client, zones []string) (string, error) {
if zones == nil {

ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(defaultEnvironment, defaultZone))
zones, err := client.ListZones(ctx)
var err error
zones, err = client.ListZones(ctx)

if err != nil {
return "", err
Expand Down

0 comments on commit 6e224ed

Please sign in to comment.