Skip to content

Commit

Permalink
chore: add note about log endpoint in dial error for logstream
Browse files Browse the repository at this point in the history
  • Loading branch information
shreddedbacon committed Apr 12, 2024
1 parent 7bdd410 commit db9d7ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/lagoon/ssh/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func LogStream(config *ssh.ClientConfig, host, port string, argv []string) error
// https://stackoverflow.com/a/37088088
client, err := ssh.Dial("tcp", host+":"+port, config)
if err != nil {
return fmt.Errorf("couldn't dial SSH: %v", err)
return fmt.Errorf("couldn't dial SSH (maybe this service doesn't support logs?): %v", err)
}
session, err := client.NewSession()
if err != nil {
Expand Down

0 comments on commit db9d7ba

Please sign in to comment.