Commit 3a87540b authored by Antoine Millet's avatar Antoine Millet
Browse files

Fixed bug in socket reader function.

parent 235a77a2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ class RpcConnection(object):
    '''

    NONBLOCKING_ERRORS = (errno.EAGAIN, errno.EWOULDBLOCK)
    NONBLOCKING_SSL_ERRORS = (ssl.SSL_ERROR_WANT_READ)
    NONBLOCKING_SSL_ERRORS = (ssl.SSL_ERROR_WANT_READ, )

    MESSAGE_HEADER = '!HL'
    MESSAGE_HEADER_FALLBACK = '!L'