ssh: shorten wait delay for external ssh binaries now that we are using go1.20

Now we are guaranteed to have go1.20 or later we can use the WaitDelay
flag when running external ssh binaries.
This commit is contained in:
Nick Craig-Wood 2024-01-13 16:58:36 +00:00
parent 938b43c26c
commit da244a3709
1 changed files with 2 additions and 2 deletions

View File

@ -10,6 +10,7 @@ import (
"io"
"os/exec"
"strings"
"time"
"github.com/rclone/rclone/fs"
)
@ -93,8 +94,7 @@ func (f *Fs) newSSHSessionExternal() *sshSessionExternal {
s.cmd = exec.CommandContext(ctx, ssh[0], ssh[1:]...)
// Allow the command a short time only to shut down
// FIXME enable when we get rid of go1.19
// s.cmd.WaitDelay = time.Second
s.cmd.WaitDelay = time.Second
return s
}