Reduce concurrency limit in safe_gather

This commit is contained in:
Rafael Moraes
2025-10-25 17:32:19 -03:00
parent 2c91982ae0
commit b7c813571e
+1 -1
View File
@@ -48,7 +48,7 @@ async def async_subprocess(*args: str, silent: bool = False) -> None:
async def safe_gather(
*tasks: typing.Awaitable[typing.Any],
limit: int = 5,
limit: int = 3,
retries: int = 3,
) -> list[typing.Any]:
semaphore = asyncio.Semaphore(limit)