Skip to content

Commit

Permalink
reconciler/tenancy/repliatelogicalcluster: fix logic typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sttts committed Jan 27, 2023
1 parent e0cf0fc commit 3bdf22c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func NewController(
if err != nil && !apierrors.IsNotFound(err) {
runtime.HandleError(fmt.Errorf("failed to get logical cluster: %v", err))
return
} else if !apierrors.IsNotFound(err) {
} else if apierrors.IsNotFound(err) {
return
}

Expand Down

0 comments on commit 3bdf22c

Please sign in to comment.