From: Tom Clegg Date: Wed, 19 Nov 2014 05:19:10 +0000 (-0500) Subject: 4233: In crunch-dispatch, log timestamps in UTC in the same format crunch-job uses. X-Git-Tag: 1.1.0~1966^2~29 X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/b40e379090ff9a01db439a7d4b3b2162d150f89a 4233: In crunch-dispatch, log timestamps in UTC in the same format crunch-job uses. --- diff --git a/services/api/script/crunch-dispatch.rb b/services/api/script/crunch-dispatch.rb index ebd5165669..d83485edba 100755 --- a/services/api/script/crunch-dispatch.rb +++ b/services/api/script/crunch-dispatch.rb @@ -44,6 +44,12 @@ require File.dirname(__FILE__) + '/../config/boot' require File.dirname(__FILE__) + '/../config/environment' require 'open3' +class LogTime < Time + def to_s + self.utc.strftime "%Y-%m-%d_%H:%M:%S" + end +end + class Dispatcher include ApplicationHelper @@ -373,7 +379,7 @@ class Dispatcher end $stderr.puts "dispatch: job #{job.uuid}" - start_banner = "dispatch: child #{t.pid} start #{Time.now.ctime.to_s}" + start_banner = "dispatch: child #{t.pid} start #{LogTime.now}" $stderr.puts start_banner @running[job.uuid] = { @@ -458,7 +464,7 @@ class Dispatcher if j[:log_throttle_bytes_skipped] > 0 message = "#{job_uuid} ! Skipped #{j[:log_throttle_bytes_skipped]} bytes of log" $stderr.puts message - j[:stderr_buf_to_flush] << "#{Time.now.ctime.to_s} #{message}\n" + j[:stderr_buf_to_flush] << "#{LogTime.now} #{message}\n" end j[:log_throttle_reset_time] = now + Rails.configuration.crunch_log_throttle_period @@ -526,7 +532,7 @@ class Dispatcher if rate_limit j, line $stderr.print "#{job_uuid} ! " unless line.index(job_uuid) $stderr.puts line - pub_msg = "#{Time.now.ctime.to_s} #{line.strip}\n" + pub_msg = "#{LogTime.now} #{line.strip}\n" j[:stderr_buf_to_flush] << pub_msg end end