From 05fbc94bef3cf7a0a62a69bfe9c1df3aa0bad3fc Mon Sep 17 00:00:00 2001 From: komuW Date: Thu, 28 Feb 2019 13:14:26 +0300 Subject: [PATCH] ff --- cli/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/cli.py b/cli/cli.py index 04690ba..2cc05d8 100644 --- a/cli/cli.py +++ b/cli/cli.py @@ -93,7 +93,7 @@ async def async_run(self, *args, **kwargs): resp = requests.get(url) print("resp: ", resp) - task = MyTask(the_broker=the_broker, queue_name="HttpQueue") + task = MyTask(the_broker=the_broker, queue_name="BlockingHttp_Queue") return task @@ -109,7 +109,7 @@ async def async_run(self, *args, **kwargs): res_text = await resp.text() print(res_text[:50]) - task = MyTask(the_broker=the_broker, queue_name="HttpQueue") + task = MyTask(the_broker=the_broker, queue_name="AsyncHttpQueue") return task