Skip to content

Commit f86dbd5

Browse files
authored
chore: temporary kludge to make websocket test past on ci (#1070)
1 parent 6004ca4 commit f86dbd5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

integration_tests/base_routes.py

+2
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ async def message(ws: WebSocketConnector, msg: str, global_dependencies) -> str:
6666
resp = "*chika* *chika* Slim Shady."
6767
elif state == 3:
6868
ws.close()
69+
# TODO temporary fix to avoid CI failure
70+
resp = "Connection Closed"
6971

7072
websocket_state[websocket_id] = (state + 1) % 4
7173
return resp

0 commit comments

Comments
 (0)