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 an ursula is launched with the --cli/-c option, the value is written ti the disk and subsequent runs remember the previous run's launch flags - even if they are invalid.
Attempting to launch on mumbai with the wring flag name by accident:
nucypher-ops ursula update --nucypher-image nucypher/nucypher:lynx ... --cli eth-provider-uri=https://polygon-mumbai.infura.io/v3/... --cli network=mumbai
...
Error: No such option: --eth-provider-uri (Possible options: --eth-provider, --payment-provider)
Usage: nucypher ursula run [OPTIONS]
Try 'nucypher ursula run --help' for help.
Fixed eth-provider-uri -> eth-provider but the error persists because the flags key/value pair is loaded from the disk.
nucypher-ops ursula update --nucypher-image nucypher/nucypher:lynx ... --cli eth-provider=https://polygon-mumbai.infura.io/v3/... --cli network=mumbai
...
Error: No such option: --eth-provider-uri (Possible options: --eth-provider, --payment-provider)
Usage: nucypher ursula run [OPTIONS]
Try 'nucypher ursula run --help' for help.
The text was updated successfully, but these errors were encountered:
If an ursula is launched with the
--cli/-c
option, the value is written ti the disk and subsequent runs remember the previous run's launch flags - even if they are invalid.Attempting to launch on mumbai with the wring flag name by accident:
Fixed
eth-provider-uri
->eth-provider
but the error persists because the flags key/value pair is loaded from the disk.The text was updated successfully, but these errors were encountered: