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
@rcgoodfellow ran into this and the debug logs were a little confusing because multiple sockets were in play simultaneously, but had multiple processes trying to start VNC servers on the same port simultaneously, causing bind() with "address already in use". Could VncServer::start() return an io::Result<()> to bubble up errors, or perhaps even an io::Result<SomeHandle> to allow shutdown via the returned handle?
The text was updated successfully, but these errors were encountered:
@rcgoodfellow ran into this and the debug logs were a little confusing because multiple sockets were in play simultaneously, but had multiple processes trying to start VNC servers on the same port simultaneously, causing
bind()
with "address already in use". CouldVncServer::start()
return anio::Result<()>
to bubble up errors, or perhaps even anio::Result<SomeHandle>
to allow shutdown via the returned handle?The text was updated successfully, but these errors were encountered: