Merge "Send binary to websocket proxy" into stable/train

This commit is contained in:
Zuul
2019-10-14 15:10:07 +00:00
committed by Gerrit Code Review

View File

@@ -263,7 +263,7 @@ class WebSocketClient(BaseClient):
return self.ws.fileno()
def send(self, data):
self.ws.send(data)
self.ws.send_binary(data)
def recv(self):
return self.ws.recv()