From 44ba5dbd8f6c7653c4f5f818d52e8eb4776f8d17 Mon Sep 17 00:00:00 2001 From: Maxim Goncharenko Date: Wed, 15 May 2019 14:05:28 +0300 Subject: [PATCH] Removed TODO comment about ProcessExisting --- pkg/engine/engine.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/engine/engine.go b/pkg/engine/engine.go index cd8b41d400..598ed361b2 100644 --- a/pkg/engine/engine.go +++ b/pkg/engine/engine.go @@ -25,7 +25,6 @@ type PolicyEngine interface { // ProcessExisting should be called from policy controller // when there is an create / update of the policy // we should process the policy on matched resources, generate violations accordingly - // TODO: This method should not be in PolicyEngine. Validate will do this work instead ProcessExisting(policy types.Policy, rawResource []byte) ([]violation.Info, []event.Info, error) // TODO: Add Generate method