Error “unknown delivery tag” occurs when i try ack messages to RabbitMQ using pika (python)

前端 未结 7 1048
别跟我提以往
别跟我提以往 2021-02-07 00:57

I want process messages in few threads but i\'m getting error during execute this code:

from __future__ import with_statement
import pika
import sys
from pika.ad         


        
7条回答
  •  不知归路
    2021-02-07 00:58

    This issue is generated because you have set the { noack: true }, but still trying to send acknowledgement.

提交回复
热议问题