From: Zac Medico Date: Tue, 30 Jan 2007 23:40:14 +0000 (-0000) Subject: For bug #164363, shuffle the ip addresses returned from socket.getaddrinfo(). (trunk... X-Git-Tag: v2.1.2-r6~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8966679d61510276dbd3399c10b2246cf00c615c;p=portage.git For bug #164363, shuffle the ip addresses returned from socket.getaddrinfo(). (trunk r5832:5833) svn path=/main/branches/2.1.2/; revision=5844 --- diff --git a/bin/emerge b/bin/emerge index a3561aee7..620fda434 100755 --- a/bin/emerge +++ b/bin/emerge @@ -3784,6 +3784,8 @@ def action_sync(settings, trees, mtimedb, myopts, myaction): ips.append("[%s]" % addrinfo[4][0]) else: ips.append(addrinfo[4][0]) + from random import shuffle + shuffle(ips) except SystemExit, e: raise # Needed else can't exit except Exception, e: