File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,17 @@ import (
2828
2929// Result contains the result of a Reconciler invocation.
3030type Result struct {
31- // Requeue tells the Controller to requeue the reconcile key. Defaults to false.
31+ // Requeue tells the Controller to perform a ratelimited requeue
32+ // using the workqueues ratelimiter. Defaults to false.
33+ //
34+ // This setting is deprecated as it causes confusion and there is
35+ // no good reason to use it. When waiting for an external event to
36+ // happen, either the duration until it is supposed to happen or an
37+ // appropriate poll interval should be used, rather than an
38+ // interval emitted by a ratelimiter whose purpose it is to control
39+ // retry on error.
40+ //
41+ // Deprecated: Use `RequeueAfter` instead.
3242 Requeue bool
3343
3444 // RequeueAfter if greater than 0, tells the Controller to requeue the reconcile key after the Duration.
You can’t perform that action at this time.
0 commit comments