Commit af9092ff authored by Antoine Millet's avatar Antoine Millet
Browse files

Fixed bug in reader dispatch

parent b102a62a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -238,7 +238,7 @@ class RpcConnection(object):
        self._inbound_buffer += buf

        # Process and dispatch all inbound data:
        while self._remains <= len(self._inbound_buffer):
        while self._remains <= 0:
            self._dispatch()

    def _dispatch(self):