From 6d3dbccb869413c02b1e4a08b0eea91ce466fbb2 Mon Sep 17 00:00:00 2001 From: gsd Date: Mon, 16 Sep 2024 23:18:00 +0300 Subject: [PATCH] timeout fix 2 --- backend/config_parser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/config_parser.py b/backend/config_parser.py index 8446ba3..7a1789f 100644 --- a/backend/config_parser.py +++ b/backend/config_parser.py @@ -334,9 +334,9 @@ class TranscodeTools: async with aiofiles.open(raw_file, "wb") as raw: async for chunk in nvr.stream_file(file, preview_pre_bytes): await raw.write(chunk) - await asyncio.wait_for(download_task(), 10) + await download_task() - except asyncio.TimeoutError as te: + except Exception as te: clear_from_storage() self.logger.info(f"Cancel download file: {te}") if os.path.exists(raw_file):