Github user mxmrlv commented on a diff in the pull request:
https://github.com/apache/incubator-ariatosca/pull/207#discussion_r150785086
--- Diff: aria/parser/presentation/context.py ---
@@ -63,3 +67,12 @@ def get_from_dict(self, *names):
"""
return self.presenter._get_from_dict(*names) if self.presenter is
not None else None
+
+ def create_executor(self):
+ if self.threads == 1:
--- End diff --
maybe we need to provide a way of configuring the threads through the
initiator (and not necessarily overriding it in subclasses)?
---