sjammula
05/15/2023, 3:24 PMsignals
is changed to which supported format?I need to raise exceptions failed states.Please do provide the needful infoRob Freedy
05/15/2023, 7:53 PMsjammula
05/16/2023, 1:56 PMRob Freedy
05/16/2023, 1:59 PMsjammula
05/16/2023, 5:11 PMsys.tracebacklimit = 0
raise Exception("Job run didn't succeed, status = {}".format(status))
Rob Freedy
05/16/2023, 7:43 PMraise Exception()
like you are doing in the code block from anywhere in the task. Could you try returning a future that fails on raising of an exception? always_fails_task.submit().result(raise_on_failure=False)
sjammula
05/16/2023, 8:30 PM