Github user aviyoop commented on a diff in the pull request:
https://github.com/apache/incubator-ariatosca/pull/208#discussion_r152226255
--- Diff: aria/cli/commands/executions.py ---
@@ -141,17 +143,21 @@ def start(workflow_name,
WORKFLOW_NAME is the unique name of the workflow within the service
(e.g. "uninstall").
"""
service = model_storage.service.get_by_name(service_name)
- executor = DryExecutor() if dry else None # use WorkflowRunner's
default executor
-
- workflow_runner = \
- WorkflowRunner(
- model_storage, resource_storage, plugin_manager,
- service_id=service.id, workflow_name=workflow_name,
inputs=inputs, executor=executor,
- task_max_attempts=task_max_attempts,
task_retry_interval=task_retry_interval
- )
+ executor = DryExecutor() if dry else
ProcessExecutor(plugin_manager=plugin_manager)
+
+ compiler = execution_compiler.ExecutionCompiler(
--- End diff --
`execution_compiler_`
---