Skip to content

Commit

Permalink
ff
Browse files Browse the repository at this point in the history
  • Loading branch information
komuw committed Feb 28, 2019
1 parent 5c2ae9f commit 05fbc94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand All @@ -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


Expand Down

0 comments on commit 05fbc94

Please sign in to comment.