Fixes Node Wait Condition

Previously, the Node Wait Handle/Condition referenced the Broker
instead of the Node.  This caused the Heat stack to show complete
prior to the Node being truly configured and ready.

Change-Id: I7ab1dce8de0b892e3495ef16c26dc8e8bd0475b7
This commit is contained in:
danehans 2014-03-07 18:31:49 +00:00
parent 2c35244e99
commit c5fdbd94c2
1 changed files with 2 additions and 2 deletions

View File

@ -245,9 +245,9 @@
"NodeWaitCondition": {
"Type": "AWS::CloudFormation::WaitCondition",
"DependsOn": "BrokerInstance",
"DependsOn": "NodeInstance",
"Properties": {
"Handle": { "Ref": "BrokerWaitHandle" },
"Handle": { "Ref": "NodeWaitHandle" },
"Timeout": "1800"
}
},