Skip to content

Commit

Permalink
roachprod: enable verbose logging for scp
Browse files Browse the repository at this point in the history
This single '-v' flag enable debug1 level logging in ssh in hopes
of helping root cause issues like #37113.
  • Loading branch information
ajwerner committed Apr 25, 2019
1 parent df024f7 commit 277ceb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/roachprod/install/cluster_synced.go
Original file line number Diff line number Diff line change
Expand Up @@ -1383,7 +1383,7 @@ func (c *SyncedCluster) SSH(sshArgs, args []string) error {

func (c *SyncedCluster) scp(src, dest string) error {
args := []string{
"scp", "-r", "-C",
"scp", "-v", "-r", "-C",
"-o", "StrictHostKeyChecking=no",
}
args = append(args, sshAuthArgs()...)
Expand Down

0 comments on commit 277ceb3

Please sign in to comment.