debian-mirror-gitlab/debian/patches/0440-remove-puma.patch

25 lines
540 B
Diff
Raw Normal View History

2020-04-13 13:49:04 +05:30
We are using unicorn so don't need puma
--- a/Gemfile
+++ b/Gemfile
2020-06-24 00:07:28 +05:30
@@ -161,18 +161,13 @@
# Application server
gem 'rack', '~> 2.0', '>= 2.0.9'
+gem 'rack-timeout', require: false
group :unicorn do
gem 'unicorn', '~> 5.5'
gem 'unicorn-worker-killer', '~> 0.4.4'
end
-group :puma do
2020-04-08 15:34:39 +05:30
- gem 'gitlab-puma', '~> 4.3.3.gitlab.2', require: false
2020-01-01 14:36:02 +05:30
- gem 'gitlab-puma_worker_killer', '~> 0.1.1.gitlab.1', require: false
- gem 'rack-timeout', require: false
-end
-
# State machine
2019-12-26 22:33:15 +05:30
gem 'state_machines-activerecord', '~> 0.6.0'