From 8db94b4bdce23d815459d6d76103fc46a2b92dfa Mon Sep 17 00:00:00 2001 From: Anton Nurapkin <71319523+antonnurapkin@users.noreply.github.com> Date: Fri, 28 Feb 2025 18:11:14 +0300 Subject: [PATCH 1/2] doc: sync publisher and consumer queue's names --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 6eab113..49a4cfe 100644 --- a/README.rst +++ b/README.rst @@ -115,7 +115,7 @@ Simple consumer channel = await connection.channel() # Declaring queue - declare_ok = await channel.queue_declare('helo') + declare_ok = await channel.queue_declare('hello') consume_ok = await channel.basic_consume( declare_ok.queue, on_message, no_ack=True ) From e9d0d2f2758e1f57a22e6265406b2b236fb2851d Mon Sep 17 00:00:00 2001 From: Anton Nurapkin <71319523+antonnurapkin@users.noreply.github.com> Date: Fri, 28 Feb 2025 18:21:23 +0300 Subject: [PATCH 2/2] docs: update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 49a4cfe..96f2407 100644 --- a/README.rst +++ b/README.rst @@ -115,7 +115,7 @@ Simple consumer channel = await connection.channel() # Declaring queue - declare_ok = await channel.queue_declare('hello') + declare_ok = await channel.queue_declare('hello', auto_delete=True) consume_ok = await channel.basic_consume( declare_ok.queue, on_message, no_ack=True )