Replies: 1 comment
-
See the troubleshooting section of the documentation to learn how to enable detailed logging for the server. Then please provide the logs for one of these sessions in which you say the server stops responding to events. Without these details it is hard to know what happened. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Ran into a weird issue. running react front end and I had convoID's initial value set as null. This worked fine when I only had the emit for join_convo but when I added the leave_convo emit as a cleanup act. It caused my backend to stop executing the flask-socketio listeners. I placed loggers in each so I know my useEffect code was working fine and convoId was changing. I've fixed the issue by setting my initial value of convoId to the string "null" and it works fine now. So it doesn't seem to be async thing. Anyways my code works so I'm fine now. Just curious if anyone knows about this issue or what it is.
backend:
Beta Was this translation helpful? Give feedback.
All reactions