From 171c2ade3d688b8161fab279df076d8c0476cc18 Mon Sep 17 00:00:00 2001 From: akshya96 <87045294+akshya96@users.noreply.github.com> Date: Mon, 16 Aug 2021 10:12:00 -0700 Subject: [PATCH] Vault 2176 snapshot config issue (#12317) * removing redirect line from handler.go * adding changelog entry * adding changes --- changelog/12317.txt | 3 +++ http/handler.go | 1 + 2 files changed, 4 insertions(+) create mode 100644 changelog/12317.txt diff --git a/changelog/12317.txt b/changelog/12317.txt new file mode 100644 index 0000000000000..45544197bdc62 --- /dev/null +++ b/changelog/12317.txt @@ -0,0 +1,3 @@ +```release-note: bug +core (enterprise): Fixes reading raft auto-snapshot configuration from performance standby node +``` \ No newline at end of file diff --git a/http/handler.go b/http/handler.go index 11bdcbad17b76..f161b2acb0c0d 100644 --- a/http/handler.go +++ b/http/handler.go @@ -109,6 +109,7 @@ func init() { alwaysRedirectPaths.AddPaths([]string{ "sys/storage/raft/snapshot", "sys/storage/raft/snapshot-force", + "!sys/storage/raft/snapshot-auto/config", }) }