From 71681dec4479b1a77ce5a40cff0da282c739419d Mon Sep 17 00:00:00 2001 From: Angus Salkeld Date: Fri, 25 May 2012 12:12:14 +1000 Subject: [PATCH] Add missing "properties_schema" to WaitConditionHandle Change-Id: I475ac4f72613a2f20275949a01168246cae1fb52 Signed-off-by: Angus Salkeld --- heat/engine/wait_condition.py | 1 + 1 file changed, 1 insertion(+) diff --git a/heat/engine/wait_condition.py b/heat/engine/wait_condition.py index 2371bc6144..b847a0262f 100644 --- a/heat/engine/wait_condition.py +++ b/heat/engine/wait_condition.py @@ -33,6 +33,7 @@ class WaitConditionHandle(Resource): then the cfn-signal will use this url to post to and WaitCondition will poll it to see if has been written to. ''' + properties_schema = {} def __init__(self, name, json_snippet, stack): super(WaitConditionHandle, self).__init__(name, json_snippet, stack)