David Moreau Simard
David Moreau Simard
@nerijus I'm not certain I understand and would like to clarify -- are you saying that you are able to reproduce the errors with the playbook in your last comment...
Thanks for reviving this issue @nerijus :) This reminded me of another issue about labels also running into a 255 character limit: https://github.com/ansible-community/ara/issues/185 I'm not sure if it's possible to...
I have a commit that truncates the inventory hostname if it's >=255 characters: https://github.com/dmsimard/ara/commit/ae61690e65ea98514c4fc877782a82ce728a55db It works but I would need to write a test or two for it. We could...
I'm re-opening this because I just came across a warning when using a MySQL backend: ``` api.Label.name: (mysql.W003) MariaDB may not allow unique CharFields to have a max_length > 255....
From the django documentation:  I suppose AWX does not run into this restriction because it requires postgresql while ara targets to be compatible with mysql and...
I've sent a PR to truncate names to 255 characters and reverted the migration that upped the limit to 512 characters to prevent impacting mysql support: https://github.com/ansible-community/ara/pull/437 The callback will...
@nerijus what ara records are the individual host names, not the full list (or jinja expression) provided to the ``hosts`` key of a play. So long as your jinja expression...
> I just tested with #437 , it is ok now, I don't get exceptions anymore. Thanks! Yes, this is what the PR is intended to mitigate. Thanks for testing...
Closing this issue now that the fix has merged in the master branch. It'll be released in 1.6.0.
@markfaine the challenge is that the playbook details aren't available when querying the playbook list endpoint as to keep the response as small and as fast as possible. We also...