5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-10 19:41:41 +00:00

Merge branch 'issue-10031' into informative-deploys

This commit is contained in:
f 2023-03-13 20:13:04 -03:00
commit 6992d16ab0

View file

@ -40,12 +40,14 @@ class DeployJob < ApplicationJob
# No es opcional
unless @deployed[:deploy_local][:status]
# Hacer fallar la tarea
raise DeployException, 'Falló la compilación'
raise DeployException, "#{@site.name}: Falló la compilación"
end
deploy_others
rescue DeployException => e
rescue DeployTimedOutException => e
notify_exception e
rescue DeployException => e
notify_exception e, deploy_local
ensure
@site&.update status: 'waiting'