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 2019/12/02 20:57:24 UTC

[libcloud] branch trunk updated (156a0ea -> 5329671)

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

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


    from 156a0ea  Merge pull request #1376 from zimventures/zim/gcp_disk_labels
     new 5e6dfd5  Fix invalid method signature.
     new 7b50a23  Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk
     new f7450ac  Add changelog entry.
     new 5329671  Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGES.rst                           | 5 +++++
 libcloud/compute/drivers/azure_arm.py | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)


[libcloud] 01/04: Fix invalid method signature.

Posted by to...@apache.org.
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 5e6dfd5143e5b9015ae11b2f662502c9867e8938
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Mon Dec 2 21:39:20 2019 +0100

    Fix invalid method signature.
---
 libcloud/compute/drivers/azure_arm.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libcloud/compute/drivers/azure_arm.py b/libcloud/compute/drivers/azure_arm.py
index 0c90db2..7babd7d 100644
--- a/libcloud/compute/drivers/azure_arm.py
+++ b/libcloud/compute/drivers/azure_arm.py
@@ -1996,7 +1996,7 @@ class AzureNodeDriver(NodeDriver):
                                     method='POST')
         return r.object
 
-    def stop_node(self, node, deallocate=True):
+    def stop_node(self, node, ex_deallocate=True):
         """
         Stop a running node.
 
@@ -2011,7 +2011,7 @@ class AzureNodeDriver(NodeDriver):
         :type deallocate: ``bool``
         """
 
-        if deallocate:
+        if ex_deallocate:
             target = "%s/deallocate" % node.id
         else:
             target = "%s/powerOff" % node.id


[libcloud] 04/04: Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk

Posted by to...@apache.org.
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 5329671cba94de698f98a28d967c722352d2fd27
Merge: f7450ac 156a0ea
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Mon Dec 2 21:57:15 2019 +0100

    Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk

 libcloud/compute/drivers/gce.py                    | 28 ++++++++++++++++++++++
 .../compute/fixtures/gce/aggregated_disks.json     |  6 +++++
 ..._us-central1-a_disks_lcdisk_setLabels_post.json | 16 +++++++++++++
 ...s_us-central1-a_disks_lcdisk_setLabel_post.json | 16 +++++++++++++
 libcloud/test/compute/test_gce.py                  | 23 ++++++++++++++++++
 5 files changed, 89 insertions(+)


[libcloud] 02/04: Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk

Posted by to...@apache.org.
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 7b50a2384309457969834ae940735a6ffad807f5
Merge: 5e6dfd5 d4334c0
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Mon Dec 2 21:43:20 2019 +0100

    Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud into trunk

 libcloud/compute/drivers/vcloud.py               | 2 +-
 libcloud/test/compute/test_cloudsigma_v1_0.py    | 2 +-
 libcloud/test/compute/test_dimensiondata_v2_3.py | 2 +-
 libcloud/test/compute/test_dimensiondata_v2_4.py | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)


[libcloud] 03/04: Add changelog entry.

Posted by to...@apache.org.
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 f7450ace8c05db7455bc74bcbd2eb28c4ab21e4a
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Mon Dec 2 21:43:27 2019 +0100

    Add changelog entry.
---
 CHANGES.rst | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/CHANGES.rst b/CHANGES.rst
index f2bf76f..ca1c479 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -52,6 +52,11 @@ Compute
   (GITHUB-1375, GITHUB-1364)
   [Tomaz Muraus, @emakarov]
 
+ - [GCE] Add new ``ex_set_volume_labels`` method for managing volume labels to
+   the driver.
+   (GITHUB-1376)
+   [Rob Zimmerman - @zimventures]
+
 Storage
 ~~~~~~~