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 1bd44b78e772f676ee74af35fc47c866420260fb Author: Tomaz Muraus <[email protected]> AuthorDate: Sat Oct 12 21:36:10 2019 +0200 Add "ex_" prefix to the "sync" argument in the method which is part of the standard API. --- libcloud/compute/drivers/gce.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libcloud/compute/drivers/gce.py b/libcloud/compute/drivers/gce.py index ec68303..54ba297 100644 --- a/libcloud/compute/drivers/gce.py +++ b/libcloud/compute/drivers/gce.py @@ -6831,7 +6831,7 @@ class GCENodeDriver(NodeDriver): self.connection.async_request(request, method='DELETE') return True - def destroy_node(self, node, destroy_boot_disk=False, sync=True): + def destroy_node(self, node, destroy_boot_disk=False, ex_sync=True): """ Destroy a node. @@ -6844,8 +6844,8 @@ class GCENodeDriver(NodeDriver): method.) :type destroy_boot_disk: ``bool`` - :keyword sync: If true, do not return until destroyed or timeout - :type sync: ``bool`` + :keyword ex_sync: If true, do not return until destroyed or timeout + :type ex_sync: ``bool`` :return: True if successful :rtype: ``bool``
