mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-14 08:53:07 -06:00
change json key retrieval syntax
This commit is contained in:
committed by
Steve Smith
parent
d8c891a4b2
commit
a2ba77418e
@@ -33,8 +33,17 @@
|
|||||||
until: response.status == 200
|
until: response.status == 200
|
||||||
retries: 6
|
retries: 6
|
||||||
delay: 15
|
delay: 15
|
||||||
failed_when: response.response.json.state != 'INITIALISING'
|
failed_when: response[item].json.state != 'INITIALISING'
|
||||||
debug: var=response
|
|
||||||
debug: var=response.response.json.state
|
- name: get status of import
|
||||||
debug: var=response.json.id
|
debug: var=response
|
||||||
|
|
||||||
|
|
||||||
|
- name: get job id
|
||||||
|
debug: var=response[item].json.state
|
||||||
|
|
||||||
|
|
||||||
|
- name: get job id
|
||||||
|
debug: var=response[item].json.id
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user