mirror of
https://github.com/ansible/ansible.git
synced 2026-08-01 00:34:56 +02:00
* Misc callback fixes/cleanup * Fix v1 callback method dispatch, fully deprecate v1 methods, add missing tests. * Clean up callback plugin init/setup code, remove redundancies, improve error messaging. * Remove unused callback method definitions from base class. Co-authored-by: Matt Clay <matt@mystile.com> * switch callback bypass to instance-level from class-level * preserves any instance-level method magic that implementations were using * add missing handler dispatch entry * add tests to ensure all methods are covered --------- Co-authored-by: Matt Clay <matt@mystile.com>
21 lines
290 B
YAML
21 lines
290 B
YAML
- hosts: localhost
|
|
gather_facts: no
|
|
tasks:
|
|
- noisy:
|
|
register: noisyout
|
|
async: 5
|
|
poll: 1
|
|
loop: [1, 2]
|
|
|
|
- noisy:
|
|
async: 5
|
|
poll: 1
|
|
register: noisyout
|
|
|
|
- debug:
|
|
when: false
|
|
|
|
- debug:
|
|
var: 1/0
|
|
ignore_errors: true
|