From 77864991de744096976936eebaf61d0f7fd4440e Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Mon, 17 Sep 2012 12:09:59 -0700 Subject: [PATCH] Fix spelling errors in loadbalancer which resulted in template not launching Fixes issue #239 Change-Id: I20f685598b90a40ed0452af8b7c018a1bf7e0492 Signed-off-by: Steven Dake Signed-off-by: Tomas Sedovic --- heat/engine/loadbalancer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/heat/engine/loadbalancer.py b/heat/engine/loadbalancer.py index 79cca3db..bedeedfb 100644 --- a/heat/engine/loadbalancer.py +++ b/heat/engine/loadbalancer.py @@ -255,8 +255,8 @@ class LoadBalancer(stack.Stack): if health_chk: check = 'check inter %ss fall %s rise %s' % ( health_chk['Interval'], - health_chk['UnHealthyTheshold'], - health_chk['HealthyTheshold']) + health_chk['UnhealthyThreshold'], + health_chk['HealthyThreshold']) timeout_check = 'timeout check %ds' % (health_chk['Timeout']) else: check = '' -- 2.45.2