0

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

Anup Jain
  • 23
  • 3
  • Sounds like you are receiving unexpected RST packets. See [this answer](https://stackoverflow.com/questions/251243/what-causes-a-tcp-ip-reset-rst-flag-to-be-sent) or [this page](https://www.pico.net/kb/what-is-a-tcp-reset-rst/) for some hints. – Jack Taylor Nov 24 '22 at 12:23

0 Answers0