diff options
author | Ian Lewis <ianlewis@google.com> | 2019-10-10 14:41:41 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-10-10 14:43:03 -0700 |
commit | 065339193e4309a8c771ba88058c3b2d96c07e78 (patch) | |
tree | 6e9e36b2ab87c95d692e6f03b3dbb09e082a1ef4 | |
parent | a5170fd825efbea0550137b5979f7bd08398aa55 (diff) |
Update TODO for OCI seccomp support.
PiperOrigin-RevId: 274042343
-rw-r--r-- | runsc/specutils/specutils.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/specutils/specutils.go b/runsc/specutils/specutils.go index 591abe458..3d9ced1b6 100644 --- a/runsc/specutils/specutils.go +++ b/runsc/specutils/specutils.go @@ -92,7 +92,7 @@ func ValidateSpec(spec *specs.Spec) error { log.Warningf("AppArmor profile %q is being ignored", spec.Process.ApparmorProfile) } - // TODO(b/72226747): Apply seccomp to application inside sandbox. + // TODO(gvisor.dev/issue/510): Apply seccomp to application inside sandbox. if spec.Linux != nil && spec.Linux.Seccomp != nil { log.Warningf("Seccomp spec is being ignored") } |