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
With the default timer interval set to 1000, a queue is created and one request per second is sent. All good.
When the queue is empty, clearInterval() is called, but the timer is not set to null.
The next time a request comes in, the request is queued, but the timer fails a null check and is never restarted!
BAsically I can send one flurry of requests, but after the queue is cleared I can't run anymore.
The text was updated successfully, but these errors were encountered:
Thanks for the issue. How would you fix the problem?
Sorry, something went wrong.
No branches or pull requests
With the default timer interval set to 1000, a queue is created and one request per second is sent. All good.
When the queue is empty, clearInterval() is called, but the timer is not set to null.
The next time a request comes in, the request is queued, but the timer fails a null check and is never restarted!
BAsically I can send one flurry of requests, but after the queue is cleared I can't run anymore.
The text was updated successfully, but these errors were encountered: