Post request form the action server and continue to the next action without waiting

Hi, i am trying to do a post request to an API from the action server. The task that is triggered is taking a little while (about 20 seconds or more). It seems that it waits for the task to be completed because it’s showing a time out error. Is there a way to do the post request and go on to the next action without waiting for any response? Thank you for your kind help.

This is the asynchronous request that i am trying to do using aiohttp:

async with aiohttp.ClientSession() as session:
            await session.post('http://localhost:5000/',params=params)