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 2016/07/05 09:18:04 UTC

[1/2] libcloud git commit: auroradns: The 'extra' parameter in update_record() should be optional

Repository: libcloud
Updated Branches:
  refs/heads/trunk 6f695001b -> 664bb3402


auroradns: The 'extra' parameter in update_record() should be optional

In base update_record() is defined with extra=None but this was not properly
done in the Aurora DNS driver.

Update the method signature so that it matches the base DNS driver of libcloud.

Closes #830


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

Branch: refs/heads/trunk
Commit: 320862a3242d456c5058e72b98dd4fab6ae699d8
Parents: 6f69500
Author: Wido den Hollander <wi...@widodh.nl>
Authored: Sat Jul 2 19:03:35 2016 +0200
Committer: Anthony Shaw <an...@apache.org>
Committed: Tue Jul 5 19:16:33 2016 +1000

----------------------------------------------------------------------
 libcloud/dns/drivers/auroradns.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/320862a3/libcloud/dns/drivers/auroradns.py
----------------------------------------------------------------------
diff --git a/libcloud/dns/drivers/auroradns.py b/libcloud/dns/drivers/auroradns.py
index 23e7f36..f0991f4 100644
--- a/libcloud/dns/drivers/auroradns.py
+++ b/libcloud/dns/drivers/auroradns.py
@@ -338,7 +338,7 @@ class AuroraDNSDriver(DNSDriver):
                                 method='DELETE')
         return True
 
-    def update_record(self, record, name, type, data, extra):
+    def update_record(self, record, name, type, data, extra=None):
         rdata = {}
 
         if name is not None:


[2/2] libcloud git commit: Changes for #830

Posted by an...@apache.org.
Changes for #830


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

Branch: refs/heads/trunk
Commit: 664bb3402f45de7b2396b61d24468bd09fd91ea7
Parents: 320862a
Author: Anthony Shaw <an...@apache.org>
Authored: Tue Jul 5 19:17:58 2016 +1000
Committer: Anthony Shaw <an...@apache.org>
Committed: Tue Jul 5 19:17:58 2016 +1000

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


http://git-wip-us.apache.org/repos/asf/libcloud/blob/664bb340/CHANGES.rst
----------------------------------------------------------------------
diff --git a/CHANGES.rst b/CHANGES.rst
index f3f6a72..0d61c17 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -11,6 +11,13 @@ Compute
   (GITHUB-833)
   [Juan Font Alonso]
 
+DNS
+~~~
+
+- Updated the 'extra' parameter in `update_record()` to be optional in aurora driver
+  (GITHUB-830)
+  [Wido Hollander]
+
 Container
 ~~~~~~~~~