forked from shaba/openuds
Merge remote-tracking branch 'origin/v2.1'
This commit is contained in:
commit
9cf5291064
@ -37,7 +37,7 @@ import six
|
||||
import traceback
|
||||
import pickle
|
||||
import errno
|
||||
import json
|
||||
import time
|
||||
|
||||
from udsactor.utils import toUnicode
|
||||
from udsactor.log import logger
|
||||
@ -421,6 +421,7 @@ class ClientIPC(threading.Thread):
|
||||
|
||||
except socket.error as e:
|
||||
if e.errno == errno.EINTR:
|
||||
time.sleep(1) #
|
||||
continue # Ignore interrupted system call
|
||||
logger.error('Communication with server got an error: {}'.format(toUnicode(e.strerror)))
|
||||
# self.running = False
|
||||
|
Loading…
Reference in New Issue
Block a user