5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-02 15:56:07 +00:00

fix: notificar las excepciones manualmente

por alguna razón sucker punch dejó de enviarlas!
This commit is contained in:
f 2023-03-13 19:27:03 -03:00
parent 1d08b3fdcd
commit e0a7232643

View file

@ -37,6 +37,8 @@ class DeployJob < ApplicationJob
end
deploy_others
rescue DeployException => e
notify_exception e
ensure
@site&.update status: 'waiting'
@ -47,6 +49,12 @@ class DeployJob < ApplicationJob
private
# @param :exception [StandardError]
# @param :deploy [Deploy]
def notify_exception(exception, deploy = nil)
ExceptionNotifier.notify_exception(exception, data: { site: @site.id, deploy: deploy&.type })
end
def deploy_local
@deploy_local ||= @site.deploys.find_by(type: 'DeployLocal')
end