Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 393 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 393 Bytes

RabbitMQ Python Kombu message retry

Based on this article.

  1. Build RabbitMQ:
$ docker build -t rabbitmq-delay .
  1. Start RabbitMQ:
$ docker run -d -p 5672:5672 -p 15672:15672 --hostname my-rabbit --name some-rabbit rabbitmq-delay
  1. Install kombu:
$ pip3 install kombu