Author: tomaz
Date: Thu Jun 6 22:06:25 2013
New Revision: 1490458
URL: http://svn.apache.org/r1490458
Log:
Fix old _wait_until_running method.
Contributed by Bob Thompson, part of LIBCLOUD-339.
Modified:
libcloud/trunk/CHANGES
libcloud/trunk/libcloud/compute/base.py
Modified: libcloud/trunk/CHANGES
URL:
http://svn.apache.org/viewvc/libcloud/trunk/CHANGES?rev=1490458&r1=1490457&r2=1490458&view=diff
==============================================================================
--- libcloud/trunk/CHANGES (original)
+++ libcloud/trunk/CHANGES Thu Jun 6 22:06:25 2013
@@ -82,6 +82,9 @@ Changes with Apache Libcloud in deveplom
CloudStack driver. (LIBCLOUD-338)
[sebastien goasguen]
+ - Fix old _wait_until_running method. (LIBCLOUD-339)
+ [Bob Thompson]
+
*) Storage
- Fix an issue with double encoding the container name in the CloudFiles
Modified: libcloud/trunk/libcloud/compute/base.py
URL:
http://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/base.py?rev=1490458&r1=1490457&r2=1490458&view=diff
==============================================================================
--- libcloud/trunk/libcloud/compute/base.py (original)
+++ libcloud/trunk/libcloud/compute/base.py Thu Jun 6 22:06:25 2013
@@ -773,10 +773,10 @@ class NodeDriver(BaseDriver):
ssh_interface='public_ips', force_ipv4=True):
# This is here for backward compatibility and will be removed in the
# next major release
- return self._wait_until_running(nodes=[node], wait_period=wait_period,
- timeout=timeout,
- ssh_interface=ssh_interface,
- force_ipv4=force_ipv4)
+ return self.wait_until_running(nodes=[node], wait_period=wait_period,
+ timeout=timeout,
+ ssh_interface=ssh_interface,
+ force_ipv4=force_ipv4)
def wait_until_running(self, nodes, wait_period=3, timeout=600,
ssh_interface='public_ips', force_ipv4=True):