We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
max_retry_count
wait
Command::Base#step
Command::Base#step with retry_on_failure: true option can enter infinite loop if block passed to this method returns falsey value
retry_on_failure: true
falsey
This code enters infinite loop:
Command::Base.new(config).step("Infinite loop example", retry_on_failure: true) { false }
The text was updated successfully, but these errors were encountered:
Issue #157 can be addressed after this issue
Sorry, something went wrong.
zzaakiirr
Successfully merging a pull request may close this issue.
Why?
Command::Base#step
withretry_on_failure: true
option can enter infinite loop if block passed to this method returnsfalsey
valueExample
This code enters infinite loop:
Proposal
max_retry_count
option to prevent infinite loopwait
option so that time after which passed block should be retried can be configurableThe text was updated successfully, but these errors were encountered: