Hello Team ansible.
Since upgrade to 2.1.0.0, I cannot use the jira module anymore.
Error message is "fatal: [hostname]: FAILED! => {"changed": false, "failed": true, "msg": "dictionary update sequence element #0 has length 1; 2 is required"}"
The playbook Looks like
- hosts: xxxx
tasks:
- name: (JIRA) Sample ansible issue
jira: description=something issuetype=Bug operation=create password=XXXX project=xxx summary=test uri=
https://hostname.com username=XXX
PLAY [xxxx] **************************************************************
TASK [setup] *******************************************************************
Enter passphrase for key 'sshkeys/my.privatekey':
ok: [host.com] TASK [(JIRA) Sample ansible issue] *********************************************
fatal: [host.com]: FAILED! => {"changed": false, "failed": true, "msg": "dictionary update sequence element #0 has length 1; 2 is required"} NO MORE HOSTS LEFT *************************************************************
to retry, use: --limit @pb-jira-create/test.retry
PLAY RECAP *********************************************************************
host.com : ok=1 changed=0 unreachable=0 failed=1
Output same playbook in ansible 1.7.2:
PLAY [xxxx] *************************************************************
GATHERING FACTS ***************************************************************
Enter passphrase for key 'sshkeys/my.privatekey':
ok: [host.com] TASK: [(JIRA) Sample ansible issue] *******************************************
changed: [host.com] PLAY RECAP ********************************************************************
host.com : ok=2 changed=1 unreachable=0 failed=0
Can anyone confirm jira module still working in 2.1.0.0?
Thank you very much
Ivo