Skip to content

Commit 0bb47ad

Browse files
committed
so this didn't work, let's see why
1 parent 4839750 commit 0bb47ad

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

PCbuild/get_external.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import zipfile
1515

1616

17-
@functools.cache
17+
#@functools.cache
1818
def trigger_automatic_root_certificate_update(url: str, timeout: int = 30) -> None:
1919
escaped_url = url.replace("'", "''")
2020
try:
@@ -32,8 +32,8 @@ def trigger_automatic_root_certificate_update(url: str, timeout: int = 30) -> No
3232
capture_output=True,
3333
timeout=timeout + 5,
3434
)
35-
except (subprocess.CalledProcessError, subprocess.TimeoutExpired):
36-
pass
35+
except (subprocess.CalledProcessError, subprocess.TimeoutExpired) as e:
36+
print(e)
3737

3838

3939
def retrieve_with_retries(download_location, output_path, reporthook,

0 commit comments

Comments
 (0)