diff --git a/internal/flipflop/handler.go b/internal/flipflop/handler.go index fc1d527..5de0f97 100644 --- a/internal/flipflop/handler.go +++ b/internal/flipflop/handler.go @@ -268,7 +268,7 @@ func (cth *ConditionTaskHandler) validateFirmware(ctx context.Context) error { if dbErr := cth.store.ValidateFirmwareSet(ctx, srvID, fwID, done); dbErr != nil { return cth.failedWithError(ctx, "marking firmware set validated", dbErr) } - return nil + return cth.successful(ctx, "firmware set validated: "+fwID.String()) } }