Loading sjrpc/server/simple.py +2 −1 Original line number Diff line number Diff line Loading @@ -79,7 +79,8 @@ class RpcServer(object): if err.errno in (errno.ECONNABORTED, errno.EPROTO, errno.EINTR): pass else: self.logger.warn('Error while accepting client: %s', err) self.logger.warn('Error while accepting client: %s', err.strerror) return self.logger.info('New incoming connection from %s:%s', *address) Loading Loading
sjrpc/server/simple.py +2 −1 Original line number Diff line number Diff line Loading @@ -79,7 +79,8 @@ class RpcServer(object): if err.errno in (errno.ECONNABORTED, errno.EPROTO, errno.EINTR): pass else: self.logger.warn('Error while accepting client: %s', err) self.logger.warn('Error while accepting client: %s', err.strerror) return self.logger.info('New incoming connection from %s:%s', *address) Loading