Skip to content

Commit

Permalink
chore: add longer timeout for test
Browse files Browse the repository at this point in the history
  • Loading branch information
robcxyz committed Aug 14, 2024
1 parent 751885e commit d4ebd00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion icon_governance/utils/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def get_addresses(
if is_contract is not None:
endpoint += "&is_contract=true"

r = requests.get(endpoint)
r = requests.get(endpoint, timeout=5)
if r.status_code == 200:
data += r.json()
return get_addresses(max_addresses, data, skip + limit)
Expand Down

0 comments on commit d4ebd00

Please sign in to comment.