Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions fila/fibp.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

Admin (protobuf body):
0x10 CREATE_QUEUE, 0x11 DELETE_QUEUE, 0x12 QUEUE_STATS,
0x13 LIST_QUEUES, 0x14 PAUSE_QUEUE, 0x15 RESUME_QUEUE, 0x16 REDRIVE
0x13 LIST_QUEUES, 0x14 REDRIVE, 0x15 CONFIG_SET, 0x16 CONFIG_GET, 0x17 CONFIG_LIST

Flow / control:
0x20 FLOW, 0x21 HEARTBEAT
Expand Down Expand Up @@ -62,9 +62,10 @@
OP_DELETE_QUEUE = 0x11
OP_QUEUE_STATS = 0x12
OP_LIST_QUEUES = 0x13
OP_PAUSE_QUEUE = 0x14
OP_RESUME_QUEUE = 0x15
OP_REDRIVE = 0x16
OP_REDRIVE = 0x14
OP_CONFIG_SET = 0x15
OP_CONFIG_GET = 0x16
OP_CONFIG_LIST = 0x17

OP_FLOW = 0x20
OP_HEARTBEAT = 0x21
Expand Down
Loading