Skip to content

Commit

Permalink
Add 4.th.ooni.org to the round robin
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Apr 17, 2024
1 parent 44ae5a7 commit fdc5ce5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/ooniapi/probe_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -515,8 +515,8 @@ def round_robin_web_test_helpers() -> List[Dict]:
shift = q % 3 + 1

out = []
for n in range(4):
n = (n + shift) % 4
for n in range(5):
n = (n + shift) % 5
out.append({"address": f"https://{n}.th.ooni.org", "type": "https"})

return out
Expand Down

0 comments on commit fdc5ce5

Please sign in to comment.