You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi!
Here is a simple sinatra app with puma as a server: https://github.com/vfreefly/simple_app
Procfile from app: web: bundle exec puma -t 5:5 -p ${PORT:-3000} -e ${RACK_ENV:-development}
Environment: ubuntu 16.04
Steps to reproduce:
git clone https://github.com/vfreefly/simple_app.git
cd simple_app
rbenv local 2.5.1
gem install procodile
bundle install
procodile start
procodile stop
After these steps app still works on localhost:3000 and puma process is still alive:
Btw, in case of foreman or heroku local all is fine and app with puma stops correctly. Looks like procofile incorrectly determines puma's real process pid.
The text was updated successfully, but these errors were encountered:
Hi!
Here is a simple sinatra app with puma as a server: https://github.com/vfreefly/simple_app
Procfile from app:
web: bundle exec puma -t 5:5 -p ${PORT:-3000} -e ${RACK_ENV:-development}
Environment: ubuntu 16.04
Steps to reproduce:
After these steps app still works on localhost:3000 and puma process is still alive:
Btw, in case of
foreman
orheroku local
all is fine and app with puma stops correctly. Looks like procofile incorrectly determines puma's real process pid.The text was updated successfully, but these errors were encountered: