[ARVADOS] created: 7d6454e0805ff043cd523aa67e6de10fe856d698
git at public.curoverse.com
git at public.curoverse.com
Thu Nov 6 11:37:53 EST 2014
at 7d6454e0805ff043cd523aa67e6de10fe856d698 (commit)
commit 7d6454e0805ff043cd523aa67e6de10fe856d698
Author: Peter Amstutz <peter.amstutz at curoverse.com>
Date: Thu Nov 6 11:37:49 2014 -0500
4310: Fix race condition between testing for tag and setting tag by reversing
order of operations: try to set the tag, and only test for it if there is an
error.
diff --git a/services/api/script/crunch-dispatch.rb b/services/api/script/crunch-dispatch.rb
index 44ea396..dbd50f7 100755
--- a/services/api/script/crunch-dispatch.rb
+++ b/services/api/script/crunch-dispatch.rb
@@ -317,26 +317,28 @@ class Dispatcher
# sha1.)
@job_tags ||= {}
if not @job_tags[job.uuid]
- # check if the commit needs to be tagged with this job uuid
- tag_rev = `#{git} rev-list -n1 #{job.uuid.shellescape} 2>/dev/null`.chomp
- if $? != 0
- # no job tag found, so create one
- cmd = "#{git} tag #{job.uuid.shellescape} #{job.script_version.shellescape}"
- $stderr.puts cmd
- $stderr.puts `#{cmd}`
- unless $? == 0
- fail_job job, "git tag failed"
- next
- end
- else
- # job tag found, check that it has the expected revision
- unless tag_rev == job.script_version
- # Uh oh, the tag doesn't point to the revision we were expecting.
- # Someone has been monkeying with the job record and/or git.
- fail_job job, "Existing tag #{job.uuid} points to commit #{tag_rev} but expected commit #{job.script_version}"
+ cmd = "#{git} tag #{job.uuid.shellescape} #{job.script_version.shellescape}"
+ $stderr.puts cmd
+ $stderr.puts `#{cmd}`
+ unless $? == 0
+ # git tag failed. This may be because the tag already exists, so check for that.
+ tag_rev = `#{git} rev-list -n1 #{job.uuid.shellescape} 2>/dev/null`.chomp
+ if $? == 0
+ # We got a revision back
+ if tag_rev != job.script_version
+ # Uh oh, the tag doesn't point to the revision we were expecting.
+ # Someone has been monkeying with the job record and/or git.
+ fail_job job, "Existing tag #{job.uuid} points to commit #{tag_rev} but expected commit #{job.script_version}"
+ next
+ end
+ # we're okay (fall through to setting @job_tags below)
+ else
+ # git rev-list failed for some reason.
+ fail_job job, "'git tag' for #{job.uuid} failed but did not find the tag using 'git rev-list'"
next
end
end
+ # 'git tag' was successful, or there is an existing tag that points to the same revision.
@job_tags[job.uuid] = job.script_version
elsif @job_tags[job.uuid] != job.script_version
fail_job job, "Existing tag #{job.uuid} points to commit #{@job_tags[job.uuid]} but this job uses commit #{job.script_version}"
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list