Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2014-12-08 15:39:18 +0300
committerJacob Vosmaer <contact@jacobvosmaer.nl>2014-12-08 15:39:18 +0300
commit2fcef3278ce4ccb62cefa590b0f65509028fbcc0 (patch)
treef5f46d7722a3437fb3673f8392392c83ddf9aac0 /lib/gitlab/sidekiq_middleware
parent3dd86b83baccc2a2aecc12a1f4a4819438c62a81 (diff)
Fix typo
Diffstat (limited to 'lib/gitlab/sidekiq_middleware')
-rw-r--r--lib/gitlab/sidekiq_middleware/memory_killer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/sidekiq_middleware/memory_killer.rb b/lib/gitlab/sidekiq_middleware/memory_killer.rb
index f5c65e75af0..0f2db50e98c 100644
--- a/lib/gitlab/sidekiq_middleware/memory_killer.rb
+++ b/lib/gitlab/sidekiq_middleware/memory_killer.rb
@@ -18,7 +18,7 @@ module Gitlab
return unless MAX_RSS > 0 && current_rss > MAX_RSS
- Tread.new do
+ Thread.new do
# Return if another thread is already waiting to shut Sidekiq down
return unless MUTEX.try_lock