From 13449aa44df88e54c36581e48a7a9c7b9432058e Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Sat, 15 Jul 2023 22:30:08 -0700 Subject: [PATCH] Decrease download timeout --- download-model.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/download-model.py b/download-model.py index f5d49064..0f650516 100644 --- a/download-model.py +++ b/download-model.py @@ -62,7 +62,7 @@ class ModelDownloader: is_lora = False while True: url = f"{base}{page}" + (f"?cursor={cursor.decode()}" if cursor else "") - r = self.s.get(url, timeout=20) + r = self.s.get(url, timeout=10) r.raise_for_status() content = r.content @@ -136,7 +136,7 @@ class ModelDownloader: if output_path.exists() and not start_from_scratch: # Check if the file has already been downloaded completely - r = self.s.get(url, stream=True, timeout=20) + r = self.s.get(url, stream=True, timeout=10) total_size = int(r.headers.get('content-length', 0)) if output_path.stat().st_size >= total_size: return @@ -145,7 +145,7 @@ class ModelDownloader: headers = {'Range': f'bytes={output_path.stat().st_size}-'} mode = 'ab' - with self.s.get(url, stream=True, headers=headers, timeout=20) as r: + with self.s.get(url, stream=True, headers=headers, timeout=10) as r: r.raise_for_status() # Do not continue the download if the request was unsuccessful total_size = int(r.headers.get('content-length', 0)) block_size = 1024 * 1024 # 1MB