-
Notifications
You must be signed in to change notification settings - Fork 628
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
When paused why try to fetch every 1000 ms? #169
Comments
kadishmal
added a commit
to kadishmal/kafka-node
that referenced
this issue
Mar 5, 2015
@jezzalaycock seems to have written those lines. |
I think those lines can be removed. |
haio
added a commit
that referenced
this issue
Mar 6, 2015
Fix #169: When paused why try to fetch every 1000 ms?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In
highLevelConsumer.js
there is this code:The
.fetch()
function is as follows:This means that even if the consumer is paused, it will try to fetch every 1 second:
Why try if the code in
.fetch()
will justreturn
?The text was updated successfully, but these errors were encountered: