Hi EnthusiasticCoyote38
But one one process finished it changed task status to complete. May be you know some save way to deal with such situation? Or maybe the best way to check task status before upload object?
Well, you can actually forcefully set the state of the Task to running, then add artifacts, then close it?
would that work?
my_other_task.reload() my_other_task.mark_started(force=True) my_other_task.upload_artifact(...) my_other_task.flush(wait_for_uploads=True) my_other_task.completed()