Github user aviyoop commented on a diff in the pull request:
https://github.com/apache/incubator-ariatosca/pull/208#discussion_r152310821
--- Diff: aria/orchestrator/execution_preparer.py ---
@@ -31,70 +31,79 @@
DEFAULT_TASK_RETRY_INTERVAL = 30
-class ExecutionCompiler(object):
+class ExecutionPreparer(object):
+ """
+ This class manages any execution and tasks related preparation for an
execution of a workflow.
+ """
def __init__(
self,
- model,
- resource,
- plugin,
+ model_storage,
+ resource_storagee,
--- End diff --
storage
---