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 using key management commands (e.g., covenant-signer keys list), the CLI ignores keyring settings from the config file. For example, even with keyring-backend = "file" set in the config, users must still provide --keyring-backend file on the command line.
Current behavior:
# Config file has keyring-backend = "file"
covenant-signer keys list # Fails
covenant-signer keys list --keyring-backend file # Works
Expected behavior:
# Config file has keyring-backend = "file"
covenant-signer keys list # Should work using config settings
The text was updated successfully, but these errors were encountered:
When using key management commands (e.g.,
covenant-signer keys list
), the CLI ignores keyring settings from the config file. For example, even withkeyring-backend = "file"
set in the config, users must still provide--keyring-backend file
on the command line.Current behavior:
Expected behavior:
The text was updated successfully, but these errors were encountered: