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
This loudly breaks things like e.g ansible, or any other clis that rely on python and silently breaks requests package if it's using netrc to make requests because requests ignores the file if there is a parsing error
Currently the only way to use both storyblok cli and all those other things is to comment region in and out and it's not great.
Expected behavior:
Nothing is broken
This is technically not something broken with storyblok cli itself, but please consider using something else for storing authentication, something like ~/.storyblok/credentials (similar to aws or so) or something similar
The text was updated successfully, but these errors were encountered:
Current behavior:
When you login using storyblok cli it adds an entry in the netrc file with an extra field "region".
This breaks compatibility with python standard library, which throws an error when it parses the netrc file, because "region" is now a valid token (https://www.gnu.org/software/inetutils/manual/html_node/The-_002enetrc-file.html)
This loudly breaks things like e.g ansible, or any other clis that rely on python and silently breaks
requests
package if it's using netrc to make requests because requests ignores the file if there is a parsing errorCurrently the only way to use both storyblok cli and all those other things is to comment region in and out and it's not great.
Expected behavior:
Nothing is broken
This is technically not something broken with storyblok cli itself, but please consider using something else for storing authentication, something like
~/.storyblok/credentials
(similar to aws or so) or something similarThe text was updated successfully, but these errors were encountered: