we have a producer consumer model on RMQ and from past time I have started getting this error
File "newrelic/api/background_task.py", line 117, in wrapper
return wrapped(*args, **kwargs)
File "crs_consumer.py", line 49, in process_message
message.ack()
File "kombu/message.py", line 123, in ack
self.channel.basic_ack(self.delivery_tag, multiple=multiple)
File "amqp/channel.py", line 1407, in basic_ack
return self.send_method(
File "amqp/abstract_channel.py", line 70, in send_method
conn.frame_writer(1, self.channel_id, sig, args, content)
File "amqp/method_framing.py", line 186, in write_frame
write(buffer_store.view[:offset])
File "amqp/transport.py", line 347, in write
self._write(s)
What could be the reason behind this error ?
python==3.9 kombu==5.0.2