[ARVADOS] updated: 7199f034c15930a3a733e526e12fa93df7f9d4fb
git at public.curoverse.com
git at public.curoverse.com
Tue May 27 15:55:54 EDT 2014
Summary of changes:
services/api/script/crunch-dispatch.rb | 25 ++++++++++++++++---------
1 file changed, 16 insertions(+), 9 deletions(-)
via 7199f034c15930a3a733e526e12fa93df7f9d4fb (commit)
from a5f005b1b1175771ea708daee632a76f502eb9e6 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 7199f034c15930a3a733e526e12fa93df7f9d4fb
Author: radhika <radhika at curoverse.com>
Date: Tue May 27 15:54:36 2014 -0400
2756: fix error where partial lines were potentially logged
diff --git a/services/api/script/crunch-dispatch.rb b/services/api/script/crunch-dispatch.rb
index ad406ef..c8d97d9 100755
--- a/services/api/script/crunch-dispatch.rb
+++ b/services/api/script/crunch-dispatch.rb
@@ -201,6 +201,7 @@ class Dispatcher
started: false,
sent_int: 0,
job_auth: job_auth,
+ stderr_buf_to_flush: '',
stderr_flushed_at: 0
}
i.close
@@ -235,18 +236,23 @@ class Dispatcher
end
if stderr_buf
- if stderr_buf.index "\n"
- lines = stderr_buf.lines("\n").to_a
+ j[:stderr_buf] << stderr_buf
+ if j[:stderr_buf].index "\n"
+ lines = j[:stderr_buf].lines("\n").to_a
+ if j[:stderr_buf][-1] == "\n"
+ j[:stderr_buf] = ''
+ else
+ j[:stderr_buf] = lines.pop
+ end
lines.each do |line|
$stderr.print "#{job_uuid} ! " unless line.index(job_uuid)
$stderr.puts line
- log_msg = "#{Time.now.ctime.to_s} #{line.strip}"
- j[:stderr_buf] << (log_msg + " \n")
+ pub_msg = "#{Time.now.ctime.to_s} #{line.strip} \n"
+ j[:stderr_buf_to_flush] << pub_msg
end
- if (LOG_BUFFER_SIZE < j[:stderr_buf].size) || ((j[:stderr_flushed_at]+1) < Time.now.to_i)
+ if (LOG_BUFFER_SIZE < j[:stderr_buf_to_flush].size) || ((j[:stderr_flushed_at]+1) < Time.now.to_i)
write_log j
- j[:stderr_flushed_at] = Time.now.to_i
end
end
end
@@ -392,16 +398,17 @@ class Dispatcher
# send message to log table. we want these records to be transient
def write_log running_job
begin
- if (running_job && running_job[:stderr_buf] != '')
+ if (running_job && running_job[:stderr_buf_to_flush] != '')
log = Log.new(object_uuid: running_job[:job].uuid,
event_type: 'stderr',
- properties: {"text" => running_job[:stderr_buf]})
+ properties: {"text" => running_job[:stderr_buf_to_flush]})
log.save!
- running_job[:stderr_buf] = ''
+ running_job[:stderr_buf_to_flush] = ''
running_job[:stderr_flushed_at] = Time.now.to_i
end
rescue
running_job[:stderr_buf] = "Failed to write logs \n"
+ running_job[:stderr_buf_to_flush] = ''
running_job[:stderr_flushed_at] = Time.now.to_i
end
end
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list