5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-13 06:21: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 # No es opcional
unless @deployed[:deploy_local][:status] unless @deployed[:deploy_local][:status]
# Hacer fallar la tarea # Hacer fallar la tarea
raise DeployException, 'Falló la compilación' raise DeployException, "#{@site.name}: Falló la compilación"
end end
deploy_others deploy_others
rescue DeployException => e rescue DeployTimedOutException => e
notify_exception e notify_exception e
rescue DeployException => e
notify_exception e, deploy_local
ensure ensure
@site&.update status: 'waiting' @site&.update status: 'waiting'