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
The bridge socket is not automatically cleaned up after process termination.
This is partially mitigated by attempting to delete the socket before opening it (making sure we start clean each time). However, even this seems to fail sometimes with the following OS error message: "Only one usage of each socket address (protocol/network address/port) is normally permitted."
Not sure why I'm seeing this particular message, especially since it's happening right after deleting the socket in question. One thing to try before digging deeper is gracefully shutting down the socket. This would require catching and handling a termination signal.
The text was updated successfully, but these errors were encountered:
The bridge socket is not automatically cleaned up after process termination.
This is partially mitigated by attempting to delete the socket before opening it (making sure we start clean each time). However, even this seems to fail sometimes with the following OS error message: "Only one usage of each socket address (protocol/network address/port) is normally permitted."
Not sure why I'm seeing this particular message, especially since it's happening right after deleting the socket in question. One thing to try before digging deeper is gracefully shutting down the socket. This would require catching and handling a termination signal.
The text was updated successfully, but these errors were encountered: