mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00
Return reconcile.Result{}, not nil (#7521)
This commit is contained in:
parent
4ab80eafb9
commit
883ee4912d
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ func (r *RayClusterReconciler) Reconcile(request reconcile.Request) (reconcile.R
|
|||
log.Error(err, "Read request instance error!")
|
||||
// Error reading the object - requeue the request.
|
||||
if !apierrs.IsNotFound(err) {
|
||||
return nil, err
|
||||
return reconcile.Result{}, err
|
||||
}
|
||||
return reconcile.Result{}, nil
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue