From fe4f2cf3c492ad56e5bf0a5296285842a3b269c3 Mon Sep 17 00:00:00 2001 From: Randall Burt Date: Tue, 9 Jul 2013 13:56:16 -0500 Subject: [PATCH] Do not override FnGetAtt FnGetAtt is handled by the parent classes so no need to override contributes to blueprint provider-resource Change-Id: I3cb1bfc353fedf33336151f3ebc4d283330336a0 --- heat/engine/resources/template_resource.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/heat/engine/resources/template_resource.py b/heat/engine/resources/template_resource.py index 6e658788..72e07543 100644 --- a/heat/engine/resources/template_resource.py +++ b/heat/engine/resources/template_resource.py @@ -67,8 +67,5 @@ class TemplateResource(stack_resource.StackResource): def FnGetRefId(self): return self.nested().identifier().arn() - def FnGetAtt(self, key): - return unicode(self.get_output(key)) - resource.register_template_class(TemplateResource) -- 2.45.2