-
Notifications
You must be signed in to change notification settings - Fork 284
New issue
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
UDP sockets create infinite read events if no task is reading #715
Comments
Related: #695 |
Also about UDP sockets:
|
I've added |
Hello,
I have an UDP
socket
for receiving broadcasts and atask
that callssocket.recv
.After calling
task.interrupt
from other task my receiving task stops (gracefully,InterruptException
is handled) which results in an infinite amounts of read events onsocket
, CPU is at 100%.Trace log contains 100 MB of this(after running for 5 seconds at most):
Is it my fault for not "closing" socket properly or is it a bug?
The text was updated successfully, but these errors were encountered: