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
I occasionally get an error when I run tests, because the port that is selected is not actually free...
When debugging, I can see the problem is likely in MessagingProvider.FindUnusedPort: from what I can see, established connections are not excluded from the list, and eventually the service tried to bind to a non-free port.
In my case, another application is using port 49152 (ie MinimumPort in the code), and the status of the connection is ESTABLISHED, so it is erroneously not included in the list of used ports I guess.
The text was updated successfully, but these errors were encountered:
I occasionally get an error when I run tests, because the port that is selected is not actually free...
When debugging, I can see the problem is likely in
MessagingProvider.FindUnusedPort
: from what I can see, established connections are not excluded from the list, and eventually the service tried to bind to a non-free port.In my case, another application is using port
49152
(ieMinimumPort
in the code), and the status of the connection isESTABLISHED
, so it is erroneously not included in the list of used ports I guess.The text was updated successfully, but these errors were encountered: