Commit 9226804b authored by Maxim Rydkin's avatar Maxim Rydkin

replace `is_runner_queue_value_latest?` with `runner_queue_value_latest?`

parent edb14511
...@@ -142,7 +142,7 @@ module Ci ...@@ -142,7 +142,7 @@ module Ci
expire: RUNNER_QUEUE_EXPIRY_TIME, overwrite: false) expire: RUNNER_QUEUE_EXPIRY_TIME, overwrite: false)
end end
def is_runner_queue_value_latest?(value) def runner_queue_value_latest?(value)
ensure_runner_queue_value == value if value.present? ensure_runner_queue_value == value if value.present?
end end
......
...@@ -78,7 +78,7 @@ module API ...@@ -78,7 +78,7 @@ module API
no_content! unless current_runner.active? no_content! unless current_runner.active?
update_runner_info update_runner_info
if current_runner.is_runner_queue_value_latest?(params[:last_update]) if current_runner.runner_queue_value_latest?(params[:last_update])
header 'X-GitLab-Last-Update', params[:last_update] header 'X-GitLab-Last-Update', params[:last_update]
Gitlab::Metrics.add_event(:build_not_found_cached) Gitlab::Metrics.add_event(:build_not_found_cached)
return no_content! return no_content!
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment