[issue18455] Multiprocessing connection SocketClient retries connection on socket

2013-07-15 Thread Richard Oudkerk
Richard Oudkerk added the comment: Thanks for the report. This should be fixed now in 2.7. (3.1 and 3.2 only get security fixes.) -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue18455] Multiprocessing connection SocketClient retries connection on socket

2013-07-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset 542a317d4351 by Richard Oudkerk in branch '2.7': Issue #18455: multiprocessing should not retry connect() with same socket. http://hg.python.org/cpython/rev/542a317d4351 -- nosy: +python-dev ___ Python tr

[issue18455] Multiprocessing connection SocketClient retries connection on socket

2013-07-14 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- assignee: ronaldoussoren -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue18455] Multiprocessing connection SocketClient retries connection on socket

2013-07-14 Thread Richard Oudkerk
Changes by Richard Oudkerk : -- nosy: +sbt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue18455] Multiprocessing connection SocketClient retries connection on socket

2013-07-14 Thread Michael Ballantyne
New submission from Michael Ballantyne: from multiprocessing/connection.py: while 1: try: s.connect(address) except socket.error, e: if e.args[0] != errno.ECONNREFUSED or _check_timeout(t): debug('failed to connect to address %s', address)