Skip to content

Commit

Permalink
Merge pull request containers#11055 from vrothberg/fix-10701
Browse files Browse the repository at this point in the history
exec: fix cleanup
  • Loading branch information
openshift-merge-robot authored Jul 27, 2021
2 parents 27a4879 + 7689783 commit b6c279b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/domain/infra/abi/containers.go
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ func makeExecConfig(options entities.ExecOptions, rt *libpod.Runtime) (*libpod.E
return nil, errors.Wrapf(err, "error retrieving Libpod configuration to build exec exit command")
}
// TODO: Add some ability to toggle syslog
exitCommandArgs, err := generate.CreateExitCommandArgs(storageConfig, runtimeConfig, false, true, true)
exitCommandArgs, err := generate.CreateExitCommandArgs(storageConfig, runtimeConfig, false, false, true)
if err != nil {
return nil, errors.Wrapf(err, "error constructing exit command for exec session")
}
Expand Down

0 comments on commit b6c279b

Please sign in to comment.