5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-02 07:24:17 +00:00

fix: no intentar notificar si no hay sitio

closes #12753
This commit is contained in:
f 2023-03-23 18:02:43 -03:00
parent 3abd87e8e6
commit 1ff48bf458

View file

@ -69,11 +69,13 @@ class DeployJob < ApplicationJob
rescue DeployTimedOutException => e
notify_exception e
ensure
@site&.update status: 'waiting'
if @site.present?
@site.update status: 'waiting'
notify_usuaries if notify
notify_usuaries if notify
puts "\a" if @output
puts "\a" if @output
end
end
end
# rubocop:enable Metrics/MethodLength