Nerijus Baliūnas

Results 123 comments of Nerijus Baliūnas

I am running `ansible-playbook prod.yaml --tags frontend --limit core_frontend --skip-tags install`. How do I provide more info? Tried running `ARA_DEBUG=true ARA_LOG_LEVEL=DEBUG ansible-playbook ...` - did not give any additional output.

Thank you. Output of ansible-playbook -vvv: ``` [WARNING]: Failure using method (v2_playbook_on_task_start) in callback plugin (): 'id' Callback Exception: File "/usr/lib/python3.9/site-packages/ansible/executor/task_queue_manager.py", line 389, in send_callback method(*new_args, **kwargs) File "/usr/lib/python3.9/site-packages/ara/plugins/callback/ara_default.py", line...

Yes. Yes, but the tag which I use does not have serial. I do not have ARA_CALLBACK_THREADS, all I have in ansible.cfg about ara is: ``` [defaults] callback_plugins=~/.local/lib/python3.*/*-packages/ara/plugins/callback:/usr/lib/python3.*/*-packages/ara/plugins/callback:/usr/local/lib/python*/*-packages/ara/plugins/callback action_plugins=~/.local/lib/python3.*/*-packages/ara/plugins/action:/usr/lib/python3.*/*-packages/ara/plugins/action:/usr/local/lib/python*/*-packages/ara/plugins/action lookup_plugins=~/.local/lib/python3.*/*-packages/ara/plugins/lookup:/usr/lib/python3.*/*-packages/ara/plugins/lookup:/usr/local/lib/python*/*-packages/ara/plugins/lookup...

I minimized playbook so that only tasks which use my tags are left, but then there are no more warnings/exceptions. So it could be related to serial.

I restored playbook and removed only this section (which is skipped as it does not have needed tags): ``` - hosts: "{{ proxy_config | map(attribute='hosts') | flatten | join(':') }}"...

Yes, I am able to reproduce errors when this part is in the playbook (although this part is skipped because of tags).

> Maybe this Jinja2 expression returns more than 255 characters ? > > ```yaml > - hosts: "{{ proxy_config | map(attribute='hosts') | flatten | join(':') }}" > ``` No, it...

It seems it is char limit - when expr length is 294 and 261 chars, we get error, and when we remove servers from the list until expr length is...

> 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: #437 You say...