-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Peter Wilson <peter.wilson@hashicorp.com>
- Loading branch information
1 parent
0ccfbc0
commit 060b975
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
...te/content/partials/known-issues/1_15-audit-panic-handling-with-eventlogger.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
### Audit fails to recover from panics when formatting audit entries | ||
|
||
#### Affected versions | ||
|
||
- 1.15.0 - 1.15.5 | ||
|
||
#### Issue | ||
|
||
Due to an issue in the new event framework, Vault tries to resolve panics that | ||
occur when formatting audit entries. Vault cannot resolve the panic correctly, | ||
which results in the server terminating unexpectedly. | ||
|
||
The panic issue was resolved in `1.15.6`. | ||
|
||
#### Workaround | ||
|
||
Set the `VAULT_AUDIT_DISABLE_EVENTLOGGER` environment variable to `true` to | ||
disable the new underlying event framework and restart Vault: | ||
|
||
```shell-session | ||
$ export VAULT_AUDIT_DISABLE_EVENTLOGGER=true | ||
``` | ||
|
||
On startup, Vault reverts to the audit behavior used in `1.14.x`. |