We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 563f188 commit 6569ba6Copy full SHA for 6569ba6
pkg/reconciler/reconciler.go
@@ -393,7 +393,8 @@ func WithValueMapper(m values.Mapper) Option {
393
// - ReleaseFailed - an installation or upgrade failed.
394
// - Irreconcilable - an error occurred during reconciliation
395
func (r *Reconciler) Reconcile(req ctrl.Request) (res ctrl.Result, err error) {
396
- ctx := context.Background()
+ // todo:https://github.com/kubernetes-sigs/controller-runtime/issues/801
397
+ ctx := context.TODO()
398
log := r.log.WithValues(strings.ToLower(r.gvk.Kind), req.NamespacedName)
399
400
obj := &unstructured.Unstructured{}
0 commit comments