We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
uPyEcho/main.py
Lines 298 to 302 in e09c28d
self.client_sockets dictionary of sockets keeps growing unchecked. You need to pop each client socket when no data is received:
self.client_sockets.pop(fileno)
Also, in the poller.remove() function you need to remove the socket from self.targets:
Lines 197 to 203 in e09c28d
self.targets.pop(socket.fileno())
The text was updated successfully, but these errors were encountered:
No branches or pull requests
uPyEcho/main.py
Lines 298 to 302 in e09c28d
self.client_sockets dictionary of sockets keeps growing unchecked. You need to pop each client socket when no data is received:
Also, in the poller.remove() function you need to remove the socket from self.targets:
uPyEcho/main.py
Lines 197 to 203 in e09c28d
The text was updated successfully, but these errors were encountered: