diff options
author | Kyle Knapp <kyleknap@amazon.com> | 2014-10-01 16:43:16 -0700 |
---|---|---|
committer | Kyle Knapp <kyleknap@amazon.com> | 2014-10-01 16:43:16 -0700 |
commit | 63bd53bbb90e01597e5ca394cc1b65269f58203e (patch) | |
tree | c06a7e8e7c9f60955a37ba831d76c0cd2f80dcb2 /boto/ec2 | |
parent | 44d873d97bb08a09832b21dcaa0b2d47fe59411b (diff) | |
parent | c5013835e105e32bf677a280d7d2dc7f4be0f9df (diff) | |
download | boto-63bd53bbb90e01597e5ca394cc1b65269f58203e.tar.gz |
Merge pull request #2602 from zihaoyu/elb_idle_timeout
Fix typo in ELB ConnectionSettings attribute
Diffstat (limited to 'boto/ec2')
-rw-r--r-- | boto/ec2/elb/__init__.py | 2 |
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: |