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 2020/08/02 11:35:47 UTC

[libcloud] 02/06: Also bump default value for wait_period argument in wait_until_running to 5 seconds.

This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit 56bb2fb18b8c10715bec5b3e3d5798968ae04df5
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Wed Jul 29 17:37:34 2020 +0200

    Also bump default value for wait_period argument in wait_until_running to 5 seconds.
---
 libcloud/compute/base.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libcloud/compute/base.py b/libcloud/compute/base.py
index d0b02e0..9b4df1f 100644
--- a/libcloud/compute/base.py
+++ b/libcloud/compute/base.py
@@ -1605,7 +1605,7 @@ class NodeDriver(BaseDriver):
 
     def wait_until_running(self,
                            nodes,  # type: List[Node]
-                           wait_period=3,  # type: float
+                           wait_period=5,  # type: float
                            timeout=600,  # type: int
                            ssh_interface='public_ips',  # type: str
                            force_ipv4=True,  # type: bool