You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by an...@apache.org on 2017/04/01 00:40:25 UTC

[1/2] libcloud git commit: TypeError occurred when calling ex_list_nics in Azure ARM Driver Closes #979

Repository: libcloud
Updated Branches:
  refs/heads/trunk 722748f78 -> 567db9791


TypeError occurred when calling ex_list_nics in Azure ARM Driver
Closes #979


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/56fdfd22
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/56fdfd22
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/56fdfd22

Branch: refs/heads/trunk
Commit: 56fdfd22f959eae5d65001a356655f0fa95aed39
Parents: 722748f
Author: Choi Jongu <zo...@gmail.com>
Authored: Fri Jan 20 16:12:35 2017 +0900
Committer: Anthony Shaw <an...@apache.org>
Committed: Sat Apr 1 11:39:30 2017 +1100

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


http://git-wip-us.apache.org/repos/asf/libcloud/blob/56fdfd22/libcloud/compute/drivers/azure_arm.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/azure_arm.py b/libcloud/compute/drivers/azure_arm.py
index 44abcdb..9084099 100644
--- a/libcloud/compute/drivers/azure_arm.py
+++ b/libcloud/compute/drivers/azure_arm.py
@@ -868,8 +868,8 @@ class AzureNodeDriver(NodeDriver):
         :rtype: ``list`` of :class:`.AzureNic`
         """
 
-        action = "/subscriptions/%s/providers/Microsoft.Network" \
-                 "/networkInterfaces" % \
+        action = "/subscriptions/%s/resourceGroups/%s" \
+                 "/providers/Microsoft.Network/networkInterfaces" % \
                  (self.subscription_id, resource_group)
         r = self.connection.request(action,
                                     params={"api-version": "2015-06-15"})


[2/2] libcloud git commit: changes for #979

Posted by an...@apache.org.
changes for #979


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/567db979
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/567db979
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/567db979

Branch: refs/heads/trunk
Commit: 567db979149441dd1d5b4d6d6f1d4ff750062584
Parents: 56fdfd2
Author: Anthony Shaw <an...@apache.org>
Authored: Sat Apr 1 11:40:19 2017 +1100
Committer: Anthony Shaw <an...@apache.org>
Committed: Sat Apr 1 11:40:19 2017 +1100

----------------------------------------------------------------------
 CHANGES.rst | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/567db979/CHANGES.rst
----------------------------------------------------------------------
diff --git a/CHANGES.rst b/CHANGES.rst
index d690314..33b99d1 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -8,6 +8,10 @@ Changes in latest version of Apache Libcloud
 Compute
 ~~~~~~~
 
+- [Azure ARM] fix typeerror on ex_list_nics
+  [GITHUB-979]
+  (Choi Jongu)
+
 - [GCE] allow delete instances from managed group
   [GITHUB-975]
   (@zacharya19)