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
If I add an unknown keyring-backend value of local it is not possible to replace it with a valid one test without still encountering the error that was produced from adding the wrong one
(base) root@localhost:~# secretcli config set client keyring-backend local
Error: couldn't get keyring: local: unknown keyring backend [scrtlabs/[email protected]/crypto/keyring/errors.go:13]
(base) root@localhost:~# secretcli query bank balances secret1u9jfestafdkr5cr057e436puzp6agf2vvcejfc | jq
Error: couldn't get keyring: local: unknown keyring backend [scrtlabs/[email protected]/crypto/keyring/errors.go:13]
(base) root@localhost:~# secretcli config set client keyring-backend test
Error: couldn't get keyring: local: unknown keyring backend [scrtlabs/[email protected]/crypto/keyring/errors.go:13]
It was only possible to find out by inspecting secretcli config --help that showed secretcli config home was located at /root/.secretd, so I manually edited vim /root/.secretd/config/client.toml changing the value back to test
# The keyring's backend, where the keys are stored (os|file|kwallet|pass|test|memory)
keyring-backend = "test"
The text was updated successfully, but these errors were encountered:
If I add an unknown keyring-backend value of
local
it is not possible to replace it with a valid onetest
without still encountering the error that was produced from adding the wrong oneIt was only possible to find out by inspecting
secretcli config --help
that showedsecretcli config home
was located at /root/.secretd, so I manually editedvim /root/.secretd/config/client.toml
changing the value back totest
The text was updated successfully, but these errors were encountered: