-
Notifications
You must be signed in to change notification settings - Fork 80
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
Workers keep trying more than 3 attempts #99
Comments
Brought also from davidakachaos/workless_revived#13 After some more debugging, I've found that the worker just kept trying to complete the job over and over again, and it was already the 11th try. In Failing Jobs description says that Here's an extract of the logs from Heroku logs:
|
Yes that setting has no effect. You'll have to set the |
Thanks @patricklindsay, how do you do that? In the initializer to override this? https://github.com/lostboy/workless/blob/master/lib/workless/initialize.rb#L3 |
Create an initialiser within your application and set it there. For example;
The reason why the setting isn't working in this repo is because it is doing an or equals `||=. This will only set the variable if it doesn't already have a value. In this case it has a value of 25 which is the default set by Delayed Jobs. |
Transferred from: davidakachaos/workless_revived#13
In the scaler options, in the docs, you say:
Where you modified original documentation, where
:heroku_cedar
was an option. Then you say:I've tried to push with old
:heroku_cedar
but I get from Heroku:Is that Cedar name related to the Heroku Stack?
I have the gem working now with
:heroku
scaler, but I've noticed issues with the dynos not shutting down. I think this can be related to it. Any idea?The text was updated successfully, but these errors were encountered: