From 53652a220daff253b8e59b05528c40c034d50a8a Mon Sep 17 00:00:00 2001 From: shangxdy Date: Thu, 22 Sep 2016 15:55:10 +0800 Subject: Replace the hot template versoion of 2013-05-23 with 2014-10-16 Currently the translated hot version is 2013-05-23, but there some intrinsic function(such as get_attr) must be 2014-10-16 or higher in order to support more parameters. So it's necessary to update the hot template version. JIRA:PARSER-110 Change-Id: I72f7b36ba0ed32cb9e6f092c0be2dd0dea3d2572 Signed-off-by: shangxdy --- tosca2heat/heat-translator/translator/hot/syntax/hot_template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tosca2heat/heat-translator/translator/hot') diff --git a/tosca2heat/heat-translator/translator/hot/syntax/hot_template.py b/tosca2heat/heat-translator/translator/hot/syntax/hot_template.py index 4263c4d..c92d341 100644 --- a/tosca2heat/heat-translator/translator/hot/syntax/hot_template.py +++ b/tosca2heat/heat-translator/translator/hot/syntax/hot_template.py @@ -28,7 +28,7 @@ class HotTemplate(object): ('heat_template_version', 'description', 'parameter_groups', 'parameters', 'resources', 'outputs', '__undefined__') - VERSIONS = (LATEST,) = ('2013-05-23',) + VERSIONS = (LATEST,) = ('2014-10-16',) def __init__(self): self.resources = [] -- cgit 1.2.3-korg