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 2011/05/14 12:30:55 UTC

svn commit: r1103010 - /incubator/libcloud/trunk/libcloud/loadbalancer/base.py

Author: tomaz
Date: Sat May 14 10:30:55 2011
New Revision: 1103010

URL: http://svn.apache.org/viewvc?rev=1103010&view=rev
Log:
Add missing attach_member method.

Modified:
    incubator/libcloud/trunk/libcloud/loadbalancer/base.py

Modified: incubator/libcloud/trunk/libcloud/loadbalancer/base.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/loadbalancer/base.py?rev=1103010&r1=1103009&r2=1103010&view=diff
==============================================================================
--- incubator/libcloud/trunk/libcloud/loadbalancer/base.py (original)
+++ incubator/libcloud/trunk/libcloud/loadbalancer/base.py Sat May 14 10:30:55 2011
@@ -57,6 +57,9 @@ class LB(object):
     def attach_compute_node(self, node):
         return self.driver.balancer_attach_compute_node(node)
 
+    def attach_member(self, member):
+        return self.driver.balancer_attach_member(self, member)
+
     def detach_member(self, member):
         return self.driver.balancer_detach_member(self, member)