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
In class Channel, method _confirm_delivery logs a warning if delivery tag is confirmed. If I understand correctly, this is not an error and it's not something I need to be worried about. But I'm seeing a fair amount of these warnings in logs. Could this messages be a level INFO? I'd rather not suppress all warning logs from that module.
The text was updated successfully, but these errors were encountered:
I guess that you are doing something wrong. The fact is that the confirmation object is asyncio.Future, and when confirmation frame comes from the broker, it turns out that the future is already in the done state.
In class
Channel
, method_confirm_delivery
logs a warning if delivery tag is confirmed. If I understand correctly, this is not an error and it's not something I need to be worried about. But I'm seeing a fair amount of these warnings in logs. Could this messages be a level INFO? I'd rather not suppress all warning logs from that module.The text was updated successfully, but these errors were encountered: