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
If the scan finds an issue and enters into the done statue at the same time, the custom predicate won't be verified
const preventFurtherPolling = (await predicate()) || this.done || timeoutPassed;
To get a chance to satisfy the predicate, we should change the condition members' precedence.
The text was updated successfully, but these errors were encountered:
fix(scan): change the condition members' precedence
94005f2
fixes #96
fix(scan): change the condition members' precedence (#97)
31f524b
derevnjuk
Successfully merging a pull request may close this issue.
If the scan finds an issue and enters into the done statue at the same time, the custom predicate won't be verified
To get a chance to satisfy the predicate, we should change the condition members' precedence.
The text was updated successfully, but these errors were encountered: