Remove hard-coded default for tcp connections
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
parent
e7663a673e
commit
ba56afde7b
|
@ -103,7 +103,7 @@ func criuOptions(context *cli.Context) *libcontainer.CriuOpts {
|
||||||
ImagesDirectory: imagePath,
|
ImagesDirectory: imagePath,
|
||||||
WorkDirectory: context.String("work-path"),
|
WorkDirectory: context.String("work-path"),
|
||||||
LeaveRunning: context.Bool("leave-running"),
|
LeaveRunning: context.Bool("leave-running"),
|
||||||
TcpEstablished: true, // context.Bool("tcp-established"),
|
TcpEstablished: context.Bool("tcp-established"),
|
||||||
ExternalUnixConnections: context.Bool("ext-unix-sk"),
|
ExternalUnixConnections: context.Bool("ext-unix-sk"),
|
||||||
ShellJob: context.Bool("shell-job"),
|
ShellJob: context.Bool("shell-job"),
|
||||||
FileLocks: context.Bool("file-locks"),
|
FileLocks: context.Bool("file-locks"),
|
||||||
|
|
Loading…
Reference in New Issue