mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 17:01:42 +00:00
fix: notificar las excepciones manualmente
por alguna razón sucker punch dejó de enviarlas!
This commit is contained in:
parent
1d08b3fdcd
commit
e0a7232643
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue