Maybe I'm missing the docs on this but is there anyway to get the errors return from an experiment? Effectively we're using sipyco to schedule an experiment to run, we then check the status, and move on when we get "finished". However, sometimes the experiment will fail but at the moment there doesn't seem to be a way to return this error:
scheduler = Client("system.app.net", "1234", target_name="schedule")
rid = scheduler.submit(
expid=expid, pipeline_name="main", priority=2, due_date=None, flush=False
)
scheduler.get_status()
// wait for status to be finished
scheduler.check_errors() // something here where we can get the errors returned