Merge pull request #3900 from pdaig/fix-ssh-killed

Fix ssh process killed when context is done
This commit is contained in:
Sebastiaan van Stijn 2022-12-08 20:26:33 +01:00 коммит произвёл GitHub
Родитель 693ae6ca73 e547881e27
Коммит 83ca73f9aa
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -37,7 +37,7 @@ func New(ctx context.Context, cmd string, args ...string) (net.Conn, error) {
c commandConn
err error
)
c.cmd = exec.CommandContext(ctx, cmd, args...)
c.cmd = exec.Command(cmd, args...)
// we assume that args never contains sensitive information
logrus.Debugf("commandconn: starting %s with %v", cmd, args)
c.cmd.Env = os.Environ()