Closed toranb closed 2 years ago
We added support for -o "-T"
. That should disable -t
. I'm not seeing -tt
as an SSH option on my linux setup, is that a OS X based option?
Interestingly the -T
option just hangs forever. The -tt
option seems to land me a valid ssh session. Good news is that this did solve my problem using gigalixir with github actions :) so thank you for the speedy turn around last night!
I learned that -t -t
shorthand is -tt
from this stackoverflow question
I noticed last week that ssh fails trying to ssh in for migrations with the following args
'['ssh', '-t', 'root@v2018-us-central1.gcp.ssh.gigalixir.com', '-p', '31632', 'gigalixir_run', 'migrate']'
if you instead use
-tt
or possibly-T
I think you can side step this because that option willDisable pseudo-tty allocation
Any help on this would be greatly appreciated @jesseshieh
If I use the
-o
options I still see gigalixir ssh_helper using the normal-t
optiongigalixir ps:ssh -o "-tt"
'['ssh', '-tt', '-t', 'root@v2018-us-central1.gcp.ssh.gigalixir.com', '-p', '31632', 'gigalixir_run', 'migrate']'
edit this terminal error fails during any Github Actions Deployment that requires gigalixir