We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug with heroku/7.30.0 darwin-x64 node-v11.14.0.
With a Rails project lacking a /tmp/pids folder invoking heroku local fails to boot the app.
/tmp/pids
heroku local
The error is Errno::ENOENT: No such file or directory @ rb_sysopen - tmp/pids/server.pid.
Errno::ENOENT: No such file or directory @ rb_sysopen - tmp/pids/server.pid
Workaround: running rails server and then running heroku local again fixes the problem since rails server creates the pids folder if missing.
rails server
pids
The Heroku CLI should also create the pids directory if missing.
The text was updated successfully, but these errors were encountered:
We generally don't create files in your projects without being ask or asking permission. We could provide a better error message though.
Sorry, something went wrong.
No branches or pull requests
Do you want to request a feature or report a bug?
Bug with heroku/7.30.0 darwin-x64 node-v11.14.0.
What is the current behavior?
With a Rails project lacking a
/tmp/pids
folder invokingheroku local
fails to boot the app.The error is
Errno::ENOENT: No such file or directory @ rb_sysopen - tmp/pids/server.pid
.Workaround: running
rails server
and then runningheroku local
again fixes the problem sincerails server
creates thepids
folder if missing.What is the expected behavior?
The Heroku CLI should also create the
pids
directory if missing.The text was updated successfully, but these errors were encountered: