To debug tests that are running in a Chrome browser container, we use SSH tunneling on CircleCI 1.0 to get access to the browser via VNC:
ssh -p PORT ubuntu@IP_ADDRESS -L 5901:localhost:5900
Now that we have SSH Debugging on CircleCI 2.0, I tried the same thing:
ssh -p PORT IP_ADDRESS -L 5901:localhost:5900
I am able to get an SSH tunnel connected, but when I try to connect to the Container via VNC, I get the following error on the CircleCI 2.0 machine:
channel 3: open failed: unknown channel type: unsupported channel type
I’m not technically savy enough with SSH tunneling to know what the problem is, and my Googling hasn’t dug up any answers. Does anyone know what I’m doing wrong?