RobustRat47 , Hi!
Do you mean the task position in the queue?
Yep 🙂
Basically:
` task = Task.get_task(task_id='aaaa')
while task.status not in ('completed', 'stopped',):
do something ?
sleep(15) `(Notice task.status / task.get_status() will refresh the Task status on every call)
I've got it... i just remembered I can calltask_id
from the cloned tasked and check the status of that 🙂
Thanks Martin 🙂 just seen this worked as expected
so I guess if the status has changed from running to completed