You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When session_persistence is set to true, SocketIO cannot reply properly.
sio.enter_room(sid, data["session_id"]) needs to be changed to await sio.enter_room(sid, data["session_id"]).
rasa/rasa/core/channels/socketio.py
Line 230 in 7807b19
Missing "await" before sio.enter_room(sid, data[“session_id”])
The text was updated successfully, but these errors were encountered: