fix: increase timeout from 5 to 15 seconds for executor call in get_recent_rants

The timeout passed to asyncio.wait_for for the run_in_executor call fetching rants was raised to 15 seconds to accommodate slower responses from the underlying dr.get_rants API call.
This commit is contained in:
retoor 2024-12-03 03:31:21 +00:00
parent 95e266c7cb
commit 522465e0f8

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), 5)
rants = asyncio.wait_for(loop.run_in_executor(None,get_rants), 15)
page += 1
for rant in rants: