diff --git a/heat/engine/loadbalancer.py b/heat/engine/loadbalancer.py index fcc4405016..79cca3dbfd 100644 --- a/heat/engine/loadbalancer.py +++ b/heat/engine/loadbalancer.py @@ -306,7 +306,7 @@ class LoadBalancer(stack.Stack): health_chk = self.properties['HealthCheck'] if health_chk: - if float(health_chk['Interval']) >= float(health_chk['Timeout']): + if float(health_chk['Interval']) < float(health_chk['Timeout']): return {'Error': 'Interval must be larger than Timeout'}