diff --git a/internal/controller/runtime/fsm/runtime_fsm_common.go b/internal/controller/runtime/fsm/runtime_fsm_common.go index 33e7b781..a53f08eb 100644 --- a/internal/controller/runtime/fsm/runtime_fsm_common.go +++ b/internal/controller/runtime/fsm/runtime_fsm_common.go @@ -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 }