Merge pull request #615 from likebreath/disable_clh_seccomp

clh: Disable the 'seccomp' option temporarily
This commit is contained in:
Peng Tao
2020-08-31 18:34:36 +08:00
committed by GitHub

View File

@@ -959,6 +959,12 @@ func (clh *cloudHypervisor) LaunchClh() (int, error) {
args = append(args, "-vv")
}
// Disable the 'seccomp' option in clh for now.
// In this way, we can separate the periodic failures caused
// by incomplete `seccomp` filters from other failures.
// We will bring it back after completing the `seccomp` filter.
args = append(args, "--seccomp", "false")
clh.Logger().WithField("path", clhPath).Info()
clh.Logger().WithField("args", strings.Join(args, " ")).Info()