mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 04:36:11 +10:00
Merge branch 'spread-runner-last-updated-at' into 'master'
Spread out runner contacted_at updates This is meant to prevent having too many concurrent UPDATE requests caused by runners checking in. See merge request !1722
This commit is contained in:
committed by
Robert Speicher
parent
38039e3ace
commit
52994bb915
@@ -4,6 +4,10 @@ v 8.1.3
|
||||
- Force update refs/merge-requests/X/head upon a push to the source branch of a merge request (Stan Hu)
|
||||
|
||||
v 8.1.2
|
||||
v 8.1.3
|
||||
- Spread out runner contacted_at updates
|
||||
|
||||
v 8.1.1
|
||||
- Fix cloning Wiki repositories via HTTP (Stan Hu)
|
||||
- Add migration to remove satellites directory
|
||||
- Fix specific runners visibility
|
||||
|
||||
@@ -16,7 +16,9 @@ module Ci
|
||||
end
|
||||
|
||||
def update_runner_last_contact
|
||||
if current_runner.contacted_at.nil? || Time.now - current_runner.contacted_at >= UPDATE_RUNNER_EVERY
|
||||
# Use a random threshold to prevent beating DB updates
|
||||
contacted_at_max_age = UPDATE_RUNNER_EVERY + Random.rand(UPDATE_RUNNER_EVERY)
|
||||
if current_runner.contacted_at.nil? || Time.now - current_runner.contacted_at >= contacted_at_max_age
|
||||
current_runner.update_attributes(contacted_at: Time.now)
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user