From 4a3f9dc4e5f7636f6c08d06e45cde895f35946cb Mon Sep 17 00:00:00 2001 From: Chris Lewis Date: Thu, 31 Jan 2019 14:58:59 -0800 Subject: [PATCH] Make reconcile.Request requeue behavior less ambiguous --- pkg/reconcile/reconcile.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/reconcile/reconcile.go b/pkg/reconcile/reconcile.go index fec8e3020d..fbdec10870 100644 --- a/pkg/reconcile/reconcile.go +++ b/pkg/reconcile/reconcile.go @@ -28,6 +28,7 @@ type Result struct { Requeue bool // RequeueAfter if greater than 0, tells the Controller to requeue the reconcile key after the Duration. + // Implies that Requeue is true, there is no need to set Requeue to true at the same time as RequeueAfter. RequeueAfter time.Duration }