Skip to content

Commit

Permalink
Use non-cached CR on reconciliation
Browse files Browse the repository at this point in the history
Signed-off-by: Juraci Paixão Kröhling <[email protected]>
  • Loading branch information
jpkrohling committed Mar 2, 2020
1 parent 8193cd5 commit ca4d437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controller/jaeger/jaeger_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func (r *ReconcileJaeger) Reconcile(request reconcile.Request) (reconcile.Result

// Fetch the Jaeger instance
instance := &v1.Jaeger{}
err := r.client.Get(ctx, request.NamespacedName, instance)
err := r.rClient.Get(ctx, request.NamespacedName, instance)
if err != nil {
if k8serrors.IsNotFound(err) {
// Request object not found, could have been deleted after reconcile request.
Expand Down

0 comments on commit ca4d437

Please sign in to comment.