Jan Fabry
Jan Fabry
@luzfcb Moving configuration to `pyproject.toml` is interesting, but it seems to have some consequences (based on a quick reading of the linked issues). Maybe you can open a separate issue...
Would it be better to have a separate decorators for transactions and spans? They have different concerns. The transaction decorator: - Would ensure a transaction exists - Would overwrite the...
This project has been forked and updated by the Rundeck organisation itself: https://github.com/rundeck/nexus-rundeck-plugin
For me it works, with a separate user in Nexus that has the "Nexus Deployment Role" and "Repo: All Repositories (Red)" roles. The URL I use: ``` http://[rundeck_options_username]:[my_password]@[nexus.example.com]/service/local/rundeck/options/version?g=[com.example]&a=[my_artifact] ```
Another issue is that allauth will assume the stashed e-mail address (`[email protected]`) also belongs to the user, so he will end up with `[email protected]` as a primary and `[email protected]` as...
I used it in the following situation: ``` """ MY_CONFIG = ( 'A', 'B', %(extra_config)s, 'C', ) """ % {'extra_config': indent(extra_config_var)} ``` There, the extra newline gives a syntax error.