Skip to content

Commit

Permalink
Fix bug in round_robin
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Apr 22, 2024
1 parent 87034c9 commit 19fedb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/ooniapi/probe_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ def round_robin_web_test_helpers() -> List[Dict]:
if q < 10:
shift = 0
else:
shift = q % 3 + 1
shift = q % 4 + 1

out = []
for n in range(5):
Expand Down

0 comments on commit 19fedb5

Please sign in to comment.