mirror of
https://github.com/ansible/awx.git
synced 2026-05-21 15:57:52 -02:30
Updated all vendored third-party packages.
This commit is contained in:
13
awx/lib/site-packages/amqp/protocol.py
Normal file
13
awx/lib/site-packages/amqp/protocol.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from __future__ import absolute_import
|
||||
|
||||
from collections import namedtuple
|
||||
|
||||
|
||||
queue_declare_ok_t = namedtuple(
|
||||
'queue_declare_ok_t', ('queue', 'message_count', 'consumer_count'),
|
||||
)
|
||||
|
||||
basic_return_t = namedtuple(
|
||||
'basic_return_t',
|
||||
('reply_code', 'reply_text', 'exchange', 'routing_key', 'message'),
|
||||
)
|
||||
Reference in New Issue
Block a user