summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Knapp <kyleknap@amazon.com>2014-10-01 16:43:16 -0700
committerKyle Knapp <kyleknap@amazon.com>2014-10-01 16:43:16 -0700
commit63bd53bbb90e01597e5ca394cc1b65269f58203e (patch)
treec06a7e8e7c9f60955a37ba831d76c0cd2f80dcb2
parent44d873d97bb08a09832b21dcaa0b2d47fe59411b (diff)
parentc5013835e105e32bf677a280d7d2dc7f4be0f9df (diff)
downloadboto-63bd53bbb90e01597e5ca394cc1b65269f58203e.tar.gz
Merge pull request #2602 from zihaoyu/elb_idle_timeout
Fix typo in ELB ConnectionSettings attribute
-rw-r--r--boto/ec2/elb/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/boto/ec2/elb/__init__.py b/boto/ec2/elb/__init__.py
index f88b4937..6123909c 100644
--- a/boto/ec2/elb/__init__.py
+++ b/boto/ec2/elb/__init__.py
@@ -437,7 +437,7 @@ class ELBConnection(AWSQueryConnection):
value.enabled and 'true' or 'false'
params['LoadBalancerAttributes.ConnectionDraining.Timeout'] = \
value.timeout
- elif attribute.lower == 'connectingsettings':
+ elif attribute.lower() == 'connectingsettings':
params['LoadBalancerAttributes.ConnectionSettings.IdleTimeout'] = \
value.idle_timeout
else: