Skip to content

Commit

Permalink
kernelcmdlineconfig: Add Report to produces tuple
Browse files Browse the repository at this point in the history
The missing `leapp.reporting.Report` class is added to
kernelcmdlineconfig actor `produces` tuple.
  • Loading branch information
matejmatuska committed Oct 10, 2024
1 parent 658700d commit e1807bf
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from leapp.exceptions import StopActorExecutionError
from leapp.libraries.actor import kernelcmdlineconfig
from leapp.models import FirmwareFacts, InstalledTargetKernelInfo, KernelCmdlineArg, TargetKernelCmdlineArgTasks
from leapp.reporting import Report
from leapp.tags import FinalizationPhaseTag, IPUWorkflowTag


Expand All @@ -14,7 +15,7 @@ class KernelCmdlineConfig(Actor):

name = 'kernelcmdlineconfig'
consumes = (KernelCmdlineArg, InstalledTargetKernelInfo, FirmwareFacts, TargetKernelCmdlineArgTasks)
produces = ()
produces = (Report,)
tags = (FinalizationPhaseTag, IPUWorkflowTag)

def process(self):
Expand Down

0 comments on commit e1807bf

Please sign in to comment.