Fix ssh process killed when context is done

Signed-off-by: Patrick Daigle <114765035+pdaig@users.noreply.github.com>
This commit is contained in:
Patrick Daigle 2022-12-04 22:09:17 -05:00
parent 7240f70808
commit e547881e27
1 changed files with 1 additions and 1 deletions

View File

@ -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()