You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When initializing a Vault deployment configured with a seal stanza you are required to specify the recovery_shares and recovery_threshold values. The current logic make it impossible to initialize Vault in this configuration, as the code path the passes library's the argument checking logic will fail Vault's argument checking logic.
Current argument checking logic: if recovery_threshold <= recovery_shares:
Needed argument checking logic: if recovery_threshold > recovery_shares:
This logic bug was fixed in f8b7842 but was explicitly reintroduced in e363738
The text was updated successfully, but these errors were encountered:
When initializing a Vault deployment configured with a
seal
stanza you are required to specify therecovery_shares
andrecovery_threshold
values. The current logic make it impossible to initialize Vault in this configuration, as the code path the passes library's the argument checking logic will fail Vault's argument checking logic.Current argument checking logic:
if recovery_threshold <= recovery_shares:
Needed argument checking logic:
if recovery_threshold > recovery_shares:
This logic bug was fixed in f8b7842 but was explicitly reintroduced in e363738
The text was updated successfully, but these errors were encountered: