Skip to content
This repository was archived by the owner on Apr 14, 2025. It is now read-only.

Commit 4ebe797

Browse files
committed
fix(actions): add missing timeout in fetch_web_page()
1 parent c19350a commit 4ebe797

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

actions/fetch_web_page.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
def fetch_web_page(url: str) -> str:
88
try:
9-
response = requests.get(url)
9+
response = requests.get(url, timeout=60)
1010

1111
if response.status_code != 200:
1212
return (

0 commit comments

Comments
 (0)