This commit is contained in:
Kim "BKC" Carlbäcker 2016-12-15 22:29:47 +01:00
parent 692426b13e
commit 771dd68cdf
2 changed files with 3 additions and 3 deletions

View File

@ -83,7 +83,7 @@ module Ci
state_machine :status do
after_transition any => [:pending] do |build|
build.run_after_commit do
BuildQueueWorker.perform_async(id)
BuildQueueWorker.perform_async(id)
end
end

View File

@ -18,8 +18,8 @@ module Ci
last_update = Gitlab::Redis.with { |redis| redis.get(current_runner_redis_key)}
if params[:last_update] != ""
if :last_update == last_update
if params[:last_update].present?
if params[:last_update] == last_update
headers 'X-GitLab-Last-Update', last_update
return build_not_found!
end