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
In my ssh config I have ControlMaster auto. This causes the ssh -L command in _forward to return immediately, which _forward interprets as the remote server having terminated. As a result, any mila serve command sets up the connections and then immediately breaks them down.
Setting -o ControlMaster=no in the ssh -L command fixes the issue for me.
The text was updated successfully, but these errors were encountered:
In my ssh config I have
ControlMaster auto
. This causes thessh -L
command in_forward
to return immediately, which_forward
interprets as the remote server having terminated. As a result, anymila serve
command sets up the connections and then immediately breaks them down.Setting
-o ControlMaster=no
in thessh -L
command fixes the issue for me.The text was updated successfully, but these errors were encountered: