Github user ran-z commented on a diff in the pull request:
https://github.com/apache/incubator-ariatosca/pull/72#discussion_r104932469
--- Diff: aria/cli/commands.py ---
@@ -230,43 +228,48 @@ def _parse(self, uri):
def _get_workflow(self, context, workflow_name):
if workflow_name in BUILTIN_WORKFLOWS:
- workflow_fn =
import_fullname('aria.orchestrator.workflows.builtin.%s' % workflow_name)
+ workflow_fn =
import_fullname('aria.orchestrator.workflows.builtin.{0}'.format(
+ workflow_name))
inputs = {}
else:
+ workflow = None
+ for policy in context.modeling.instance.policies:
--- End diff --
if by now there should be a service in the storage, shouldn't this access
be to the service's "operations" field instead?
---
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.
---