Github user mxmrlv commented on a diff in the pull request:
https://github.com/apache/incubator-ariatosca/pull/187#discussion_r129574408
--- Diff: aria/orchestrator/workflows/api/task.py ---
@@ -137,6 +137,11 @@ def __init__(self,
operation =
self.actor.interfaces[self.interface_name].operations[self.operation_name]
self.plugin = operation.plugin
self.function = operation.function
+
+ modeling_utils.validate_required_inputs_are_supplied(
+ declared_inputs=operation.inputs,
+ supplied_inputs=operation.arguments)
--- End diff --
`supplied_inputs` should be both `operation.arguments` and `arguments`. And
add explanation why the validate and the actual merging process are different.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---