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
Iam facing the same issue. As specified in Readme file this gem uses heroku-api to connect to heroku but in logs it uses heroku-client which is deprecated. Moreover i am getting the error:
NoMethodError: undefined method `heroku_api_key' for Resque::Plugins::HerokuAutoscaler::Config:Module
When I enqueue a job I get this error:
NameError (uninitialized constant Resque::Plugins::HerokuAutoscaler::Heroku)
I don't know why I would need it, but I added to my job class:
require 'heroku-api'
Then I get:
NameError (uninitialized constant Heroku::Client)
Huh? So I add:
require 'heroku/client'
Then I get:
NoMethodError (undefined method
[]' for nil:NilClass)`For each of these errors my stack trace stops at the initial call to
#enqueue
so that's where I gave up.I think I followed the readme instructions exactly. Thoughts?
The text was updated successfully, but these errors were encountered: