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
{{ message }}
This repository has been archived by the owner on Apr 11, 2023. It is now read-only.
When converting string values for environment variables of type bool or numbers, startcmd fails to parse shell-quoted values. For example: when setting EDV_DATABASE_TIMEOUT="60", startcmd fails with: Error: failed to parse timeout "60": strconv.Atoi: parsing "\"60\"": invalid syntax
making the environment variables of less use, and leaving only the option of passing command parameters for these configurables.
This can either be handle here or in https://github.com/trustbloc/edge-core/blob/main/pkg/utils/cmd/util.go
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When converting string values for environment variables of type bool or numbers, startcmd fails to parse shell-quoted values. For example: when setting EDV_DATABASE_TIMEOUT="60", startcmd fails with:
Error: failed to parse timeout "60": strconv.Atoi: parsing "\"60\"": invalid syntax
making the environment variables of less use, and leaving only the option of passing command parameters for these configurables.
This can either be handle here or in https://github.com/trustbloc/edge-core/blob/main/pkg/utils/cmd/util.go
The text was updated successfully, but these errors were encountered: