Skip to content
Snippets Groups Projects
Commit ebdd3a23 authored by Kamil Trzcińśki's avatar Kamil Trzcińśki
Browse files

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
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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()
Loading
Loading
---
title: Make `bin/web_puma` consider RAILS_ENV
merge_request: 31378
author:
type: fixed
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment