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
Channel.basic_consume() now has 2 return values:
Channel.basic_consume()
nowait == False
nowait == True
ValueError()
consumer_tag
This is confusing since the API is schizophrenic and returns two different values. Moreover promise object does not have any value to user of library.
I propose that consumer_tag is always returned except the case when ValueError() is raised
Also the return values are not documented.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Channel.basic_consume()
now has 2 return values:nowait == False
nowait == True
ValueError()
whennowait == True
and user does not specifyconsumer_tag
This is confusing since the API is schizophrenic and returns two different values. Moreover promise object does not have any value to user of library.
I propose that consumer_tag is always returned except the case when
ValueError()
is raisedAlso the return values are not documented.
The text was updated successfully, but these errors were encountered: