Re: [ansible-project] Need help in polling the ansible task

2020-07-09 Thread Rahul Kumar
Thanks Vinoth ! Once i put condition like that: until: result['results'][0].content.isFetched == True It says "msg": "The conditional check 'result['results'][0].content.isFetched == True' failed. The error was: error while evaluating conditional (result['results'][0].content.isFetched ==

Re: [ansible-project] Need help in polling the ansible task

2020-07-09 Thread vinoth kumar
You can register it and use retries until it gets something you want . The. You can call you second playbook with your when condition . You have to provide the exact output to get condition . Until: register.somthing.isFetched == true On Thu 9. Jul 2020 at 11:26, Rahul Kumar wrote: > Hi

[ansible-project] Need help in polling the ansible task

2020-07-09 Thread Rahul Kumar
Hi Geeks , I have a task as below which returns me some data. I want to continuously poll this request until I get a specific attribute in response as true. Here is the response from the playbook sample1.yml: {"_id":"89494fnfi04m0","price":"$17","isFetched": false} cat sample1.yml --- name: My