Commit
·
a276d30
1
Parent(s):
bdc1e93
fix: try greater timeout
Browse files
app.py
CHANGED
@@ -87,7 +87,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
87 |
# 2. Fetch Questions
|
88 |
print(f"Fetching questions from: {questions_url}")
|
89 |
try:
|
90 |
-
response = requests.get(questions_url, timeout=
|
91 |
response.raise_for_status()
|
92 |
questions_data = response.json()
|
93 |
if not questions_data:
|
|
|
87 |
# 2. Fetch Questions
|
88 |
print(f"Fetching questions from: {questions_url}")
|
89 |
try:
|
90 |
+
response = requests.get(questions_url, timeout=30)
|
91 |
response.raise_for_status()
|
92 |
questions_data = response.json()
|
93 |
if not questions_data:
|