14 lines
340 B
Go
14 lines
340 B
Go
package tasks
|
|
|
|
import (
|
|
"context"
|
|
"log/slog"
|
|
)
|
|
|
|
// RunVmCheck is intentionally disabled.
|
|
// The legacy event-processing flow has been retired in favor of snapshot-based lifecycle logic.
|
|
func (c *CronTask) RunVmCheck(_ context.Context, logger *slog.Logger) error {
|
|
logger.Info("legacy VM event-processing task is disabled")
|
|
return nil
|
|
}
|