Commit 62cd4d9
Eric Bower
·
2026-01-16 15:32:48 -0500 EST
parent d201269
fix(tui.logs): filtered logs corruption
2 files changed,
+7,
-6
| ... | ... | @@ -7,10 +7,11 @@ import ( | |
| 7 | 7 | ||
| 8 | 8 | func NewPicoPipeClient() *pipe.SSHClientInfo { | |
| 9 | 9 | return &pipe.SSHClientInfo{ | |
| 10 | - | RemoteHost: utils.GetEnv("PICO_PIPE_ENDPOINT", "pipe.pico.sh:22"), | |
| 11 | - | KeyLocation: utils.GetEnv("PICO_PIPE_KEY", "ssh_data/term_info_ed25519"), | |
| 12 | - | KeyPassphrase: utils.GetEnv("PICO_PIPE_PASSPHRASE", ""), | |
| 13 | - | RemoteHostname: utils.GetEnv("PICO_PIPE_REMOTE_HOST", "pipe.pico.sh"), | |
| 14 | - | RemoteUser: utils.GetEnv("PICO_PIPE_USER", "pico"), | |
| 10 | + | RemoteHost: utils.GetEnv("PICO_PIPE_ENDPOINT", "pipe.pico.sh:22"), | |
| 11 | + | KeyLocation: utils.GetEnv("PICO_PIPE_KEY", "ssh_data/term_info_ed25519"), | |
| 12 | + | CertificateLocation: utils.GetEnv("PICO_PIPE_KEY_CERT", ""), | |
| 13 | + | KeyPassphrase: utils.GetEnv("PICO_PIPE_PASSPHRASE", ""), | |
| 14 | + | RemoteHostname: utils.GetEnv("PICO_PIPE_REMOTE_HOST", "pipe.pico.sh"), | |
| 15 | + | RemoteUser: utils.GetEnv("PICO_PIPE_USER", "pico"), | |
| 15 | 16 | } | |
| 16 | 17 | } |
+1,
-1