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

fix: siempre hay segundos

This commit is contained in:
f 2023-03-18 17:00:29 -03:00
parent 75621fb5c5
commit ad5724be29

View file

@ -37,7 +37,7 @@ class DeployJob < ApplicationJob
raise DeployException, 'Una dependencia falló' if failed_dependencies? d
status = d.deploy
seconds = d.build_stats.last.try(:seconds)
seconds = d.build_stats.last.try(:seconds) || 0
size = d.size
urls = d.respond_to?(:urls) ? d.urls : [d.url].compact
rescue StandardError => e