17635 fix script AbortTransaction

This commit is contained in:
Arthur Hanson 2024-10-15 13:16:47 -07:00
parent 55fad2f533
commit 7a16536308

View File

@ -51,6 +51,9 @@ class ScriptJob(JobRunner):
logger.warning("Script failed")
raise
except AbortTransaction:
# this is already handled above.
pass
except Exception as e:
if type(e) is AbortScript:
msg = _("Script aborted with error: ") + str(e)