Skip to content

Commit

Permalink
Make framework.WALPrefix a local path
Browse files Browse the repository at this point in the history
  • Loading branch information
Zlaticanin committed Oct 13, 2023
1 parent 5cd28a6 commit fe27877
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,16 @@ func Factory(ctx context.Context, conf *logical.BackendConfig) (logical.Backend,
}

func backend() *azureSecretBackend {
var b = azureSecretBackend{
b := azureSecretBackend{
updatePassword: true,
}

b.Backend = &framework.Backend{
Help: strings.TrimSpace(backendHelp),
PathsSpecial: &logical.Paths{
LocalStorage: []string{
framework.WALPrefix,
},
SealWrapStorage: []string{
"config",
},
Expand Down

0 comments on commit fe27877

Please sign in to comment.