| I also have the same issue, but only in the standard console, the Blue Ocean UI displays everything properly. Also, this behavior is strictly related to the plugin, as the same command called from Jenkins shell works as expected. Running via ansible plugin[Pipeline] ansiblePlaybook[retry-test] $ ansible-playbook looping-with-parameters.yml -i inventory --extra-vars '{"commands_list": [ls, pwd, date, whoami]}' PLAY [target] ****************************************************************** TASK [Gathering Facts] ********************************************************* ok: [eltf-qemu01] TASK [Run test(s)] ************************************************************* changed: [eltf-qemu01] => (item=ls) changed: [eltf-qemu01] => (item=pwd) changed: [eltf-qemu01] => (item=date)[Pipeline] echoRunning from jenkins shell[Pipeline] sh+ ansible-playbook looping-with-parameters.yml -i inventory --extra-vars {"commands_list": [ls, pwd, date, whoami]}changed: [eltf-qemu01] => (item=whoami) PLAY RECAP ********************************************************************* eltf-qemu01 : ok=2 changed=1 unreachable=0 failed=0 PLAY [target] ****************************************************************** TASK [Gathering Facts] *********************************************************ok: [eltf-qemu01] TASK [Run test(s)] ************************************************************* changed: [eltf-qemu01] => (item=ls) changed: [eltf-qemu01] => (item=pwd) changed: [eltf-qemu01] => (item=date) changed: [eltf-qemu01] => (item=whoami) PLAY RECAP ********************************************************************* eltf-qemu01 : ok=2 changed=1 unreachable=0 failed=0  |