diff options
author | Yorick Peterse <yorickpeterse@gmail.com> | 2017-06-19 16:12:05 +0200 |
---|---|---|
committer | Yorick Peterse <yorickpeterse@gmail.com> | 2017-06-19 16:14:07 +0200 |
commit | d505a2b8e67998b8e6f9ab525e2ddd6c9298f51e (patch) | |
tree | 4477631595d9136feb2771a073245ff069c98bf3 /app/services | |
parent | b18c12ec6a9564d55bd2851a82ff2513b8485fe0 (diff) | |
download | gitlab-ce-d505a2b8e67998b8e6f9ab525e2ddd6c9298f51e.tar.gz |
Reduce wait timings for Sidekiq jobsreduce-sidekiq-wait-timings
This reduces the time spent waiting for Sidekiq jobs to complete in
JobWaiter, and reduces the sleep interval when trying to acquire the
lease for refreshing authorizations. These changes should reduce the
time spent just waiting for a lock, which we seem to be spending most
time in when running the AuthorizedProjectsWorker.
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/users/refresh_authorized_projects_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/users/refresh_authorized_projects_service.rb b/app/services/users/refresh_authorized_projects_service.rb index 3e07b811027..f028f5eb0d4 100644 --- a/app/services/users/refresh_authorized_projects_service.rb +++ b/app/services/users/refresh_authorized_projects_service.rb @@ -34,7 +34,7 @@ module Users # Keep trying until we obtain the lease. If we don't do so we may end up # not updating the list of authorized projects properly. To prevent # hammering Redis too much we'll wait for a bit between retries. - sleep(1) + sleep(0.1) end begin |