Merge branch 'fix-bin-web-puma-script-to-consider-rails-env' into 'master'
Make `bin/web_puma` consider RAILS_ENV See merge request gitlab-org/gitlab-ce!31378
This commit is contained in:
commit
ebdd3a233e
2 changed files with 6 additions and 1 deletions
|
@ -10,7 +10,7 @@ puma_config="$app_root/config/puma.rb"
|
|||
|
||||
spawn_puma()
|
||||
{
|
||||
exec bundle exec puma --config "${puma_config}" "$@"
|
||||
exec bundle exec puma --config "${puma_config}" --environment "$RAILS_ENV" "$@"
|
||||
}
|
||||
|
||||
get_puma_pid()
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Make `bin/web_puma` consider RAILS_ENV
|
||||
merge_request: 31378
|
||||
author:
|
||||
type: fixed
|
Loading…
Reference in a new issue