We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d3eded commit a3a5f6bCopy full SHA for a3a5f6b
supervisor/api/ingress.py
@@ -391,9 +391,9 @@ async def _websocket_forward(ws_from, ws_to):
391
elif msg.type == aiohttp.WSMsgType.BINARY:
392
await ws_to.send_bytes(msg.data)
393
elif msg.type == aiohttp.WSMsgType.PING:
394
- await ws_to.ping()
+ await ws_to.ping(msg.data)
395
elif msg.type == aiohttp.WSMsgType.PONG:
396
- await ws_to.pong()
+ await ws_to.pong(msg.data)
397
elif ws_to.closed:
398
await ws_to.close(code=ws_to.close_code, message=msg.extra)
399
except RuntimeError:
0 commit comments