diff options
author | Jason Goodman <jgoodman@gitlab.com> | 2019-08-23 15:44:15 -0400 |
---|---|---|
committer | Jason Goodman <jgoodman@gitlab.com> | 2019-08-27 16:48:34 -0400 |
commit | 77d6ef672dd786d8210d257923d995458788910a (patch) | |
tree | 9e697dafa8fb64b25f1c014ad10d1aee41f8882d /lib/running_web_server.rb | |
parent | dafc6ce7a92dfcf18a025ae05803f584bffaca09 (diff) | |
download | gitlab-ce-unleash-initializer.tar.gz |
Refactor to use singletonunleash-initializer
Remove logging
Diffstat (limited to 'lib/running_web_server.rb')
-rw-r--r-- | lib/running_web_server.rb | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/running_web_server.rb b/lib/running_web_server.rb deleted file mode 100644 index 9de196f8210..00000000000 --- a/lib/running_web_server.rb +++ /dev/null @@ -1,11 +0,0 @@ -# frozen_string_literal: true - -class RunningWebServer - def self.unicorn? - !!defined?(::Unicorn) - end - - def self.puma? - !!defined?(::Puma) - end -end |