Github user mxmrlv commented on a diff in the pull request:
https://github.com/apache/incubator-ariatosca/pull/72#discussion_r105643914
--- Diff: aria/modeling/service.py ---
@@ -91,20 +115,16 @@ def operations(cls):
return cls.one_to_many_relationship('operation', dict_key='name')
@declared_attr
- def service_template(cls):
- return cls.many_to_one_relationship('service_template')
-
- # region orchestration
+ def plugins(cls):
+ return cls.many_to_many_relationship('plugin')
created_at = Column(DateTime, nullable=False, index=True)
updated_at = Column(DateTime)
+
+ # region orchestration
+
permalink = Column(Text)
scaling_groups = Column(modeling_types.Dict)
- workflows = Column(modeling_types.Dict)
-
- @declared_attr
- def service_template_name(cls):
--- End diff --
Why?
---
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.
---