Merge pull request #1390 from mrunalp/exec_sync_tty_master
execsync: Set terminal to true when we pass -t to conmon
This commit is contained in:
commit
f8b6736d81
1 changed files with 1 additions and 1 deletions
|
@ -441,7 +441,7 @@ func (r *Runtime) ExecSync(c *Container, command []string, timeout int64) (resp
|
|||
args = append(args, "-l", logPath)
|
||||
args = append(args, "--socket-dir-path", ContainerAttachSocketDir)
|
||||
|
||||
processFile, err := PrepareProcessExec(c, command, false)
|
||||
processFile, err := PrepareProcessExec(c, command, c.terminal)
|
||||
if err != nil {
|
||||
return nil, ExecSyncError{
|
||||
ExitCode: -1,
|
||||
|
|
Loading…
Reference in a new issue