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
fix: ssh connection to a workspace is established only once (#76)
- right now ssh automatically connects to the workspace when a user
selects it from the main env. page. However, if the user manually
disconnects from the hamburger menu, the SSH is no longer automatically
established afterward.
- the reason for this behavior was that the connection request flag that
triggered the ssh connection behind the scenes was never reset. In order
to reset we have to know when a user hits the disconnect button.
- fortunately Toolbox provides two callbacks, one before establishing
the ssh connection and another one right after disconnect. Even though
we don't know the reason for disconnect it's still a good opportunity to
reset the request flag.
- resolves#38
0 commit comments