Merge "Don't resolve properties for OS::Heat::None resource"

This commit is contained in:
Zuul 2019-07-03 05:14:05 +00:00 committed by Gerrit Code Review
commit e8d91e8f16
1 changed files with 4 additions and 0 deletions

View File

@ -38,6 +38,10 @@ class NoneResource(resource.Resource):
prev_resource, check_init_complete=True):
return False
def frozen_definition(self):
return self.t.freeze(
properties=properties.Properties(schema={}, data={}))
def reparse(self, client_resolve=True):
self.properties = properties.Properties(schema={}, data={})
self.translate_properties(self.properties, client_resolve)