lovepreetsingh1996 commited on
Commit
a276d30
·
1 Parent(s): bdc1e93

fix: try greater timeout

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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=15)
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: