diff options
author | shangxdy <shang.xiaodong@zte.com.cn> | 2016-09-22 15:55:10 +0800 |
---|---|---|
committer | xiaodong shang <shang.xiaodong@zte.com.cn> | 2016-09-30 03:28:29 +0000 |
commit | 53652a220daff253b8e59b05528c40c034d50a8a (patch) | |
tree | 6df1fd524deb2978e9b0f569c39011d15c376522 /tosca2heat/heat-translator/translator/hot | |
parent | 9d425078f44d463dbb20b1e7e74b1c3e6ce928b2 (diff) |
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 <shang.xiaodong@zte.com.cn>
Diffstat (limited to 'tosca2heat/heat-translator/translator/hot')
-rw-r--r-- | tosca2heat/heat-translator/translator/hot/syntax/hot_template.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 = [] |