Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle multiple fleets #157

Merged
merged 6 commits into from
Dec 28, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Typo fix
  • Loading branch information
Tarick committed Dec 24, 2021
commit e21db7aa24fa8f473d2b4e885eb2a7725b0fc4bb
2 changes: 1 addition & 1 deletion controllers/staticroute_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func (r *StaticRouteReconciler) Reconcile(ctx context.Context, req ctrl.Request)
if err := r.Client.Get(ctx, req.NamespacedName, &srObj); err != nil {
// Object not found, log the error but do not retry (not returning the error to the caller)
if client.IgnoreNotFound(err) == nil {
l.Error(err, fmt.Sprintf("the StaticRoute object %s.%s was not found, it was likely deleted previously, skipping the processing", req.NamespacedName))
l.Error(err, fmt.Sprintf("the StaticRoute object %s.%s was not found, it was likely deleted previously, skipping the processing", req.Name, req.Namespace))
return ctrl.Result{}, nil
}
// Other errors, fail with retry
Expand Down