-
Notifications
You must be signed in to change notification settings - Fork 167
New issue
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
undefined method 'poll' #76
Comments
I've also come across this issue with the following setup: Rails 4.2.0, Puma 2.8.2, Resque 1.25.0 |
This happened while we mounted resque-web in our application. Its happening because all the controllers in resque-web are extending 'ApplicationController' instead of 'ResqueWeb::ApplicationController'. Because of this, helpers are not being included and thats causing this issue. |
I "fixed" this by putting |
@mvlwn +1 for the eager_load! work around; I can vouch for it working locally and in heroku. |
|
@mvlwn +1 |
Thanks @mvlwn ! |
Same here, will this get fixed or at least worked around if its Rails specific? |
I released a new version of the Gem, which I believe should fix this issue. Please upgrade and feel free to reopen this issue if its still a problem. |
I get this error very frequently just going to
localhost:3000/resque
and I have to restart the app. Once it is restarted, that webpage works again.The text was updated successfully, but these errors were encountered: