Skip to content

Commit

Permalink
adds test function to trigger linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Disper committed Dec 5, 2024
1 parent ea07e92 commit 3653df0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions internal/controller/runtime/fsm/runtime_fsm_common.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ func updateStatusAndStopWithError(err error) (stateFn, *ctrl.Result, error) {
return sFnUpdateStatus(nil, err), nil, nil
}

func notUsed() {
// This function is not used in the codebase.
}

func requeue() (stateFn, *ctrl.Result, error) {
return nil, &ctrl.Result{Requeue: true}, nil
}
Expand Down

0 comments on commit 3653df0

Please sign in to comment.