Merge pull request #221 from crosbymichael/defaults-criu

Remove hard-coded default for tcp connections
This commit is contained in:
Alexander Morozov 2015-08-28 11:24:36 -07:00
commit 37c506058d
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ func criuOptions(context *cli.Context) *libcontainer.CriuOpts {
ImagesDirectory: imagePath,
WorkDirectory: context.String("work-path"),
LeaveRunning: context.Bool("leave-running"),
TcpEstablished: true, // context.Bool("tcp-established"),
TcpEstablished: context.Bool("tcp-established"),
ExternalUnixConnections: context.Bool("ext-unix-sk"),
ShellJob: context.Bool("shell-job"),
FileLocks: context.Bool("file-locks"),