-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
Some intrepid users on discord discovered that warp wraps ssh:
ssh () {
if is_interactive_ssh_session "$@"
then
warp_send_json_message "{\"hook\": \"PreInteractiveSSHSession\", \"value\": {}}"
if [ "$WARP_USE_SSH_WRAPPER" = "1" ]
then
local TRACE_FLAG_IF_WARP_SHELL_DEBUG_MODE=""
if [[ "$WARP_SHELL_DEBUG_MODE" == "1" ]]
then
TRACE_FLAG_IF_WARP_SHELL_DEBUG_MODE="-x"
fi
warp_ssh_helper "$@"
else
command ssh "$@"
fi
else
command ssh "$@"
fi
}
Which for some reason, results in messy ssh sessions with a default exe.dev VM:
debug2: channel 21: request exec confirm 1
debug2: channel_input_open_confirmation: channel 21: callback done
debug2: channel 21: open confirm rwindow 0 rmax 32768
channel 23: open failed: connect failed: open failed
debug2: channel_input_open_failure: channel 23: callback start
debug2: channel_input_open_failure: channel 23: callback done
channel 24: open failed: connect failed: open failed
debug2: channel_input_open_failure: channel 24: callback start
debug2: channel_input_open_failure: channel 24: callback done
channel 25: open failed: connect failed: open failed
debug2: channel_input_open_failure: channel 25: callback start
debug2: channel_input_open_failure: channel 25: callback done
debug2: channel 23: zombie
Metadata
Metadata
Assignees
Labels
No labels