ignore all new rpc calls instead of closing connection

This commit is contained in:
Alexander Bersenev
2023-02-20 14:37:16 +05:00
parent 88c8c57a44
commit a978eae922

View File

@@ -891,7 +891,7 @@ class ProxyReqStreamReader(LayeredStreamReaderBase):
return b"", {"SKIP_SEND": True} return b"", {"SKIP_SEND": True}
print_err("unknown rpc ans type:", ans_type) print_err("unknown rpc ans type:", ans_type)
return b"" return b"", {"SKIP_SEND": True}
class ProxyReqStreamWriter(LayeredStreamWriterBase): class ProxyReqStreamWriter(LayeredStreamWriterBase):