I've got it... i just remembered I can calltask_idfrom the cloned tasked and check the status of that  🙂
RobustRat47  , Hi!
Do you mean the task position in the queue?
so I guess if the status has changed from running to completed
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)
Thanks Martin 🙂 just seen this worked as expected
 
				 
				