Skip to content

Commit

Permalink
fix azure client creation
Browse files Browse the repository at this point in the history
  • Loading branch information
jroosing committed Sep 10, 2022
1 parent f5a714d commit cf45453
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

### v1.11.4

- Fix an issue with azure client creation

### v1.11.3

- Upgrade dependencies, fix breaking changes
Expand Down
2 changes: 1 addition & 1 deletion cmd/kiya/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ func getBackend(ctx context.Context, p *backend.Profile) (backend.Backend, error
if err != nil {
log.Fatal(err)
}
client, err := azsecrets.NewClient(p.VaultUrl, cred, nil)
client := azsecrets.NewClient(p.VaultUrl, cred, nil)
if err != nil {
log.Fatal(err)
}
Expand Down

0 comments on commit cf45453

Please sign in to comment.