Operation timed out - connect(2) (Errno::ETIMEDOUT)
deployment, heroku, ruby-on-rails
Solution
I found the answer here: http://www.orhancanceylan.com/heroku-run-command-operation-timed-out/ You internet provider is blocking port:5000, but you can still deploy.
heroku run:detached rake db:migrate
Problem
I am trying deploy my rails application on heroku. I used the command heroku run rake db:migrate and I am getting the following error Running `rake db:migrate` attached to terminal... up, run.2846 ! Heroku client internal error. ! Search for help at: https://help.heroku.com ! Or report a bug at: https://github.com/heroku/heroku/issues/new ``` Error: Operation timed out - connect(2) (Errno::ETIMEDOUT) ``` I tried the same command yesterday it worked perfectly.