Skip to content

Commit

Permalink
Merge pull request #3 from justjanne/justjanne/increase-timeouts
Browse files Browse the repository at this point in the history
fix: increase timeouts from 2s to 15s
  • Loading branch information
margau authored May 30, 2024
2 parents 22a1e57 + db2d6ed commit 43c1682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion voc/schedule.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def __init__(self, name: str = None, json=None, version: str = None, conference=
@classmethod
def from_url(cls, url):
log.info("Requesting " + url)
schedule_r = requests.get(url, timeout=2)
schedule_r = requests.get(url, timeout=15)

if schedule_r.ok is False:
schedule_r.raise_for_status()
Expand Down

0 comments on commit 43c1682

Please sign in to comment.