You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2015/03/28 15:51:29 UTC

[12/16] libcloud git commit: Add service_name attribute to ELBConnection class.

Add service_name attribute to ELBConnection class.


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/b034b2f9
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/b034b2f9
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/b034b2f9

Branch: refs/heads/trunk
Commit: b034b2f9b1b1c4250274405dc1c0fa36456e8bcf
Parents: 35ddbe1
Author: Tomaz Muraus <to...@apache.org>
Authored: Sat Mar 14 23:19:01 2015 +0100
Committer: Tomaz Muraus <to...@apache.org>
Committed: Sat Mar 14 23:19:01 2015 +0100

----------------------------------------------------------------------
 libcloud/loadbalancer/drivers/elb.py | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/b034b2f9/libcloud/loadbalancer/drivers/elb.py
----------------------------------------------------------------------
diff --git a/libcloud/loadbalancer/drivers/elb.py b/libcloud/loadbalancer/drivers/elb.py
index 73a3c72..f67a522 100644
--- a/libcloud/loadbalancer/drivers/elb.py
+++ b/libcloud/loadbalancer/drivers/elb.py
@@ -44,6 +44,7 @@ class ELBConnection(SignedAWSConnection):
     version = VERSION
     host = HOST
     responseCls = ELBResponse
+    service_name = 'elb'
 
 
 class ElasticLBDriver(Driver):