FIX build finished time bug
This commit is contained in:
parent
1ea9e420be
commit
41f876a714
app/helpers/ci
|
@ -1,7 +1,7 @@
|
||||||
module Ci::BuildsHelper
|
module Ci::BuildsHelper
|
||||||
def format_utc_time(unix_time)
|
def format_utc_time(unix_time)
|
||||||
Rails.logger.info "00000000000000 #{unix_time}"
|
Rails.logger.info "00000000000000 #{unix_time}"
|
||||||
return nil if unix_time.blank?
|
return nil if unix_time == 0
|
||||||
DateTime.strptime(unix_time.to_s,'%s').strftime("%Y-%m-%d %H:%M")
|
DateTime.strptime(unix_time.to_s,'%s').strftime("%Y-%m-%d %H:%M")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue