I have a controller action in aiohttp application.
async def handler_message(request):
try:
content = await request.json()
perform_message(x,y,z)
except (RuntimeError):
print("error in perform fb message")
finally:
return web.Response(text="Done")
perform_message
is async function. Now, when I call action I want that my action return as soon as possible and perform_message
put in event loop.
In this way, perform_message
isn't executed
One way would be to use
create_task
function:Other way would be to use
ensure_future
function: