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