From 94c7d45c7e4d0d47f72682511621639d73a0cd19 Mon Sep 17 00:00:00 2001 From: Wei-Cheng Pan Date: Sat, 16 Dec 2023 16:07:41 +0900 Subject: [PATCH] update --- driveutil/fix-hah/app/_download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driveutil/fix-hah/app/_download.py b/driveutil/fix-hah/app/_download.py index 614ab58d..dc4f4159 100644 --- a/driveutil/fix-hah/app/_download.py +++ b/driveutil/fix-hah/app/_download.py @@ -11,7 +11,7 @@ async def download(drive: Drive, src: Node, dst: Path, pool: Executor) -> Path: with AioQueue[None].fifo() as queue: await queue.push(_download_unknown(queue, drive, src, dst, pool)) - await queue.consume(4) + await queue.consume(8) return dst / src.name