Hi, (I answered the ticket)
The problem here, as I described in the ticket isn’t a lack of Unicorn specifically, but I just mentioned that was a better option. The issue here is missing binstubs for `rails` and `sidekiq`: 2013-12-23T16:35:50.012859+00:00 app[worker.1]: bundler: command not found: sidekiq 2013-12-23T16:35:50.350495+00:00 app[web.2]: bundler: command not found: rails The default ruby buildpack will run `bundle install --binstubs vendor/bundle/bin` which should install these binstubs (which the buildpack then symlinks to /bin in your slug). However, you don’t appear to be using the Heroku Ruby buildpack here so anything goes. More information in the ticket. - N On 23 December 2013 at 16:37:30, Qian Wang ([email protected]) wrote: Hi everyone, last night I deployed to Heroku and everything crashed as Heroku said it could not find rails or sidekiq when it tried to run my Procfile. I had just deployed to staging a few hours earlier and that is still running fine and has the exact same code + path configurations. I emailed support who suggested I not use the rails executable and run Unicorn. I understand I should probably do that, but seeing as how it could not find sidekiq, I don't think that would solve the issue. Has anyone had experience with Heroku not being able to find executables? 2013-12-23T16:35:48.544030+00:00 heroku[worker.1]: Starting process with command `bundle exec sidekiq -C config/sidekiq.yml` 2013-12-23T16:35:48.640832+00:00 heroku[worker.2]: Starting process with command `bundle exec sidekiq -C config/sidekiq.yml` 2013-12-23T16:35:49.070889+00:00 heroku[web.2]: Starting process with command `bundle exec rails server -p 11442` 2013-12-23T16:35:49.233761+00:00 heroku[worker.2]: State changed from starting to up 2013-12-23T16:35:49.236012+00:00 heroku[worker.1]: State changed from starting to up 2013-12-23T16:35:49.677581+00:00 heroku[web.1]: Starting process with command `bundle exec rails server -p 22096` 2013-12-23T16:35:49.783641+00:00 app[worker.2]: bundler: command not found: sidekiq 2013-12-23T16:35:49.783641+00:00 app[worker.2]: Install missing gem executables with `bundle install` 2013-12-23T16:35:50.012859+00:00 app[worker.1]: bundler: command not found: sidekiq 2013-12-23T16:35:50.012859+00:00 app[worker.1]: Install missing gem executables with `bundle install` 2013-12-23T16:35:50.350495+00:00 app[web.2]: bundler: command not found: rails 2013-12-23T16:35:50.350495+00:00 app[web.2]: Install missing gem executables with `bundle install` -- -- You received this message because you are subscribed to the Google Groups "Heroku" group. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/heroku?hl=en_US?hl=en --- You received this message because you are subscribed to the Google Groups "Heroku Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out. -- -- You received this message because you are subscribed to the Google Groups "Heroku" group. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/heroku?hl=en_US?hl=en --- You received this message because you are subscribed to the Google Groups "Heroku Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
