You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Presently, there appears to be no mechanism to retrieve the generated consumer_tag when calling channel.basic.consume(...).
Basic.consume should return the generated consumer_tag so it may be used by the application.
Also, in the event that consumer_tag was neither supplied nor generated, the completion callback invoked by Basic._recv_consume_ok should pass the broker-generated consumer_tag to the completion callback as an arg.
The text was updated successfully, but these errors were encountered:
Perhaps, it would be better to make public Basic's routine for generating the tags, so that users that need the tag could use an existing routine rather than having to implement their own.
Presently, there appears to be no mechanism to retrieve the generated
consumer_tag
when callingchannel.basic.consume(...)
.Basic.consume
should return the generatedconsumer_tag
so it may be used by the application.Also, in the event that
consumer_tag
was neither supplied nor generated, the completion callback invoked byBasic._recv_consume_ok
should pass the broker-generatedconsumer_tag
to the completion callback as an arg.The text was updated successfully, but these errors were encountered: