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:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-05-27 00:10:49 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-05-27 00:10:49 +0300
commit84d72a5660ac1f3c55026b8781152a9bcbe13fa2 (patch)
tree34e4bbdcbb91f6c67f99f5f69b52be140f9c8763 /lib/gitlab/runtime.rb
parent4c47bc5ec6420ab3a4ef629010e89de45b2776b9 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/runtime.rb')
-rw-r--r--lib/gitlab/runtime.rb10
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/gitlab/runtime.rb b/lib/gitlab/runtime.rb
index b0bcea0ca69..f60cac0aff0 100644
--- a/lib/gitlab/runtime.rb
+++ b/lib/gitlab/runtime.rb
@@ -15,8 +15,7 @@ module Gitlab
:rails_runner,
:rake,
:sidekiq,
- :test_suite,
- :unicorn
+ :test_suite
].freeze
class << self
@@ -36,11 +35,6 @@ module Gitlab
!!defined?(::Puma)
end
- # For unicorn, we need to check for actual server instances to avoid false positives.
- def unicorn?
- !!(defined?(::Unicorn) && defined?(::Unicorn::HttpServer))
- end
-
def sidekiq?
!!(defined?(::Sidekiq) && Sidekiq.server?)
end
@@ -66,7 +60,7 @@ module Gitlab
end
def web_server?
- puma? || unicorn?
+ puma?
end
def action_cable?