Commit ebdd3a23 authored by Kamil Trzciński's avatar Kamil Trzciński

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
parents 407de041 e2e878bd
...@@ -10,7 +10,7 @@ puma_config="$app_root/config/puma.rb" ...@@ -10,7 +10,7 @@ puma_config="$app_root/config/puma.rb"
spawn_puma() spawn_puma()
{ {
exec bundle exec puma --config "${puma_config}" "$@" exec bundle exec puma --config "${puma_config}" --environment "$RAILS_ENV" "$@"
} }
get_puma_pid() get_puma_pid()
......
---
title: Make `bin/web_puma` consider RAILS_ENV
merge_request: 31378
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment