We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6004ca4 commit f86dbd5Copy full SHA for f86dbd5
integration_tests/base_routes.py
@@ -66,6 +66,8 @@ async def message(ws: WebSocketConnector, msg: str, global_dependencies) -> str:
66
resp = "*chika* *chika* Slim Shady."
67
elif state == 3:
68
ws.close()
69
+ # TODO temporary fix to avoid CI failure
70
+ resp = "Connection Closed"
71
72
websocket_state[websocket_id] = (state + 1) % 4
73
return resp
0 commit comments