Running heroku run rails runner from rspec stopped working 2 days ago.
I am executing bash from rspec to output a string by running rails runner on heroku.
For example:
abc = `heroku run rails runner “puts ‘abc’” -a <APP_NAME>`
It works fine when running rspec on my mac and when running rails runner from the command line with heroku cli but hangs and times out after 10 minutes when running in circleci 2.0. It seems to be connecting according to the logs (says “starting…”, “connecting…”, “up…”) but times out saying “Too long with no output (exceeded 10m0s)”.
Any idea why it stopped working? There were no code changes.