Loading sjrpc/core/protocols/rpc.py +1 −1 Original line number Diff line number Diff line Loading @@ -55,7 +55,7 @@ class RpcProtocol(object): def shutdown(self): # Release all waiting calls from this rpc: for cid in self._calls: for cid in self._calls.keys(): err = {'exception': 'RpcError', 'message': 'Connection reset by peer'} self._handle_response({'id': cid, 'return': None, 'error': err}) Loading Loading
sjrpc/core/protocols/rpc.py +1 −1 Original line number Diff line number Diff line Loading @@ -55,7 +55,7 @@ class RpcProtocol(object): def shutdown(self): # Release all waiting calls from this rpc: for cid in self._calls: for cid in self._calls.keys(): err = {'exception': 'RpcError', 'message': 'Connection reset by peer'} self._handle_response({'id': cid, 'return': None, 'error': err}) Loading