<#4354 [BUG] Keyring errors when intialising flyte...
# flytekit
c
#4354 [BUG] Keyring errors when intialising flyte remote client Issue created by Tom-Newton ### Describe the bug Get a keyring error when initialising a simple flyte remote client. It seems to only happen on some systems and the exact error varies slightly. I've seen
InitError: Failed to create the collection: Prompt dismissed..
KeyringLocked: Failed to unlock the collection!
### Expected behavior I'm not trying to use any authentication so I would expect it to ignore any exceptions about the system keyring. Alternatively we could add
AuthType.NONE
so that all keyvault related code can be avoided. ### Additional context to reproduce On my system I can reproduce with:
Copy code
from flytekit.configuration import Config
from flytekit.remote import FlyteRemote

config = Config.for_sandbox()
remote = FlyteRemote(config=config)
remote.client
This is SSHing from one linux system to another linux system. Both are used with a Desktop setup so they probably have the GNOME keyring installed. I tried using all the different Auth types but they all failed for one reason or another (this is largely expected because we do not have any authentication configured on our flyte deployment). Full stack trace: stack_trace.txt ### Screenshots No response ### Are you sure this issue hasn't been raised already? • Yes ### Have you read the Code of Conduct? • Yes flyteorg/flyte