Skip to content

Instantly share code, notes, and snippets.

@svalleru
Last active October 16, 2015 19:40
Show Gist options
  • Save svalleru/70b033ee2a033d60979d to your computer and use it in GitHub Desktop.
Save svalleru/70b033ee2a033d60979d to your computer and use it in GitHub Desktop.
InfiniteRoundRobin
targets = ['serverA', 'serverB', 'serverC', 'serverD', 'serverE', 'serverF']
index = 0
while True:
print targets[index]
index = (index + 1) % len(targets)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment