Try to fix sporadic test_multiprocessing failure

This commit is contained in:
Antoine Pitrou 2011-04-05 18:13:06 +02:00
commit e21a596d51
1 changed files with 11 additions and 1 deletions

View File

@ -11,6 +11,7 @@ import io
import sys
import os
import gc
import errno
import signal
import array
import socket
@ -1371,7 +1372,16 @@ class _TestManagerRestart(BaseTestCase):
manager.shutdown()
manager = QueueManager(
address=addr, authkey=authkey, serializer=SERIALIZER)
manager.start()
try:
manager.start()
except IOError as e:
if e.errno != errno.EADDRINUSE:
raise
# Retry after some time, in case the old socket was lingering
# (sporadic failure on buildbots)
time.sleep(1.0)
manager = QueueManager(
address=addr, authkey=authkey, serializer=SERIALIZER)
manager.shutdown()
#