From 6a2e5225f0a7e0a7e903dd4c7089c6626135e657 Mon Sep 17 00:00:00 2001 From: Praneet Bachheti Date: Wed, 11 May 2016 11:24:27 -0700 Subject: [PATCH] Change Service Template default version to 1 Change-Id: I6e4f137d80848b469459677ccf94587eb89e8f28 Closes-bug: 1580727 --- contrail_heat/resources/service_template.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrail_heat/resources/service_template.py b/contrail_heat/resources/service_template.py index d433ff8..e84d887 100644 --- a/contrail_heat/resources/service_template.py +++ b/contrail_heat/resources/service_template.py @@ -143,9 +143,9 @@ class HeatServiceTemplate(ContrailResource): properties.Schema.STRING, _('Indicates version for the template'), constraints=[ - constraints.AllowedValues([2]), + constraints.AllowedValues([1, 2]), ], - default='2', + default='1', update_allowed=False ), }