Commit ec7babab authored by Quinton Hoole's avatar Quinton Hoole

Merge pull request #7732 from mbforbes/logSsh

Log which SSH key is used in e2e SSH test
parents 52d388a4 f2173627
......@@ -695,6 +695,7 @@ func getSigner(provider string) (ssh.Signer, error) {
return nil, fmt.Errorf("getSigner(...) not implemented for %s", provider)
}
key := filepath.Join(keydir, keyfile)
Logf("Using SSH key: %s", key)
// Create an actual signer.
file, err := os.Open(key)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment