fix: add missing await to asyncio.wait_for call in get_recent_rants

The `asyncio.wait_for` call was missing an `await` keyword, causing the coroutine to be returned instead of awaited. This fix ensures the function properly awaits the executor result with the 15-second timeout.
This commit is contained in:
retoor 2024-12-03 04:57:48 +00:00
parent 53e17fb2c7
commit f2830de25d

View File

@ -32,7 +32,7 @@ async def get_recent_rants(start_from=1, page_size=10):
def get_rants():
return dr.get_rants("recent", page_size, start_from)["rants"]
rants = asyncio.wait_for(loop.run_in_executor(None,get_rants), 15)
rants = await asyncio.wait_for(loop.run_in_executor(None,get_rants), 15)
page += 1
for rant in rants: