You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If any entity found with reserved name (Service, Package etc.), add some flag to then entity name. As reserved keyword should not be used in blueprint file.
Right now it raises error:
"/root/.local/lib/python3.7/site-packages/calm/dsl/builtins/models/entity.py", line 183, in __new__
raise TypeError("{} is a reserved name for this entity".format(name))
TypeError: Package is a reserved name for this entity
Ex:
class Package(Package):
pass
Package name should not be allowed in above case.
The text was updated successfully, but these errors were encountered:
If any entity found with reserved name (
Service
,Package
etc.), add some flag to then entity name. As reserved keyword should not be used in blueprint file.Right now it raises error:
Ex:
Package
name should not be allowed in above case.The text was updated successfully, but these errors were encountered: