mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-09 08:55:13 -04:00
Have 'sys/renew' return the value provided in Secret.
Fixes a regression introduced in 0.3.
This commit is contained in:
parent
74564d9b7a
commit
336550cb7c
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ func Handler(core *vault.Core) http.Handler {
|
|||
mux.Handle("/v1/sys/remount", proxySysRequest(core))
|
||||
mux.Handle("/v1/sys/policy", handleSysListPolicies(core))
|
||||
mux.Handle("/v1/sys/policy/", handleSysPolicy(core))
|
||||
mux.Handle("/v1/sys/renew/", proxySysRequest(core))
|
||||
mux.Handle("/v1/sys/renew/", handleLogical(core, false))
|
||||
mux.Handle("/v1/sys/revoke/", proxySysRequest(core))
|
||||
mux.Handle("/v1/sys/revoke-prefix/", proxySysRequest(core))
|
||||
mux.Handle("/v1/sys/auth", proxySysRequest(core))
|
||||
|
|
|
|||
Loading…
Reference in a new issue