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 was archived by the owner on Apr 12, 2018. It is now read-only.
It may have been an intentional choice, but boto's config file and simple-workflow's config file are in slightly different formats. Since boto is the underlying library making the connections, it seems logical to me to use the boto config file for credentials and swf region instead of a library-specific settings file. The boto config reference is at http://boto.readthedocs.org/en/latest/boto_config_tut.html.
Here are differences I've found. All of these are of course not relevant if you decide to use the settings that boto loads.
simple-workflow looks for ~/.swf by default. boto looks in several places, as mentioned in the above link, but the location for the current user is at ~/.boto by default.
There appears to be no way to easily override the settings location. I guess you could do the following before making any connections.
I believe ConfigParser uses case-sensitive section names, but case-insensitive keys, at least that's what Python 3.4 documentation says https://docs.python.org/3/library/configparser.html#supported-ini-file-structure. I believe it's the same for Python 2.7 as well. That means "credentials" and "Credentials" aren't compatible.
It may have been an intentional choice, but boto's config file and simple-workflow's config file are in slightly different formats. Since boto is the underlying library making the connections, it seems logical to me to use the boto config file for credentials and swf region instead of a library-specific settings file. The boto config reference is at http://boto.readthedocs.org/en/latest/boto_config_tut.html.
Here are differences I've found. All of these are of course not relevant if you decide to use the settings that boto loads.
simple-workflow looks for ~/.swf by default. boto looks in several places, as mentioned in the above link, but the location for the current user is at ~/.boto by default.
There appears to be no way to easily override the settings location. I guess you could do the following before making any connections.
However, if you let boto load its own config file instead, I don't think you'd need to load your own settings file at all.
The key names are different between boto and simple-workflow formats. Again, see http://boto.readthedocs.org/en/latest/boto_config_tut.html.