@@ -384,7 +384,7 @@ def __init__(self, processor_def):
384
384
385
385
super ().__init__ (processor_def , PROCESS_METADATA_IMPORT )
386
386
387
- def execute (self , data ):
387
+ def execute (self , data , outputs = None ):
388
388
389
389
response = None
390
390
mimetype = 'application/json'
@@ -433,7 +433,7 @@ def __init__(self, processor_def):
433
433
434
434
super ().__init__ (processor_def , PROCESS_METADATA_VALIDATE )
435
435
436
- def execute (self , data ):
436
+ def execute (self , data , outputs = None ):
437
437
438
438
response = None
439
439
mimetype = 'application/json'
@@ -477,7 +477,7 @@ def __init__(self, processor_def):
477
477
478
478
super ().__init__ (processor_def , PROCESS_METADATA_GENERATE )
479
479
480
- def execute (self , data ):
480
+ def execute (self , data , outputs = None ):
481
481
482
482
response = None
483
483
mimetype = 'application/json'
@@ -525,7 +525,7 @@ def __init__(self, processor_def):
525
525
526
526
super ().__init__ (processor_def , PROCESS_METADATA_TRANSFORM )
527
527
528
- def execute (self , data ):
528
+ def execute (self , data , outputs = None ):
529
529
530
530
content = None
531
531
response = None
0 commit comments