Skip to content

Commit 8113e88

Browse files
committed
ci(test): update WebSocket echo server function signature for websockets v11+
Signed-off-by: Xin Liu <[email protected]>
1 parent cf19d7c commit 8113e88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ jobs:
102102
)
103103
logger = logging.getLogger(__name__)
104104
105-
async def echo(websocket, path):
105+
async def echo(websocket):
106106
client_addr = websocket.remote_address
107-
logger.info(f"✅ New connection from {client_addr} to {path}")
107+
logger.info(f"✅ New connection from {client_addr}")
108108
109109
message_count = 0
110110
try:

0 commit comments

Comments
 (0)