-
I am using I have fixed this issue by removing the The three items we have in my I have not done extensive testing, but it def improves things. I have tested it only on Mac. Have I encountered a bug? When I get time I will try to create minimal reproducible test case to check if something else I am doing is causing this. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The problem is that you're calling |
Beta Was this translation helpful? Give feedback.
The problem is that you're calling
accept()
twice. For one of the calls, you ignore errors, and for the other call you ignore successful calls. The connection refused happens when theErr()
branch accepts a connection and immediately throws it away since it's not an error. You have to instead match on the result after the=>
instead of using two branches on theselect!
.