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/21 05:42:54 UTC

[07/16] libcloud git commit: FAM-791 request fixed

FAM-791 request fixed


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

Branch: refs/heads/trunk
Commit: e78c67e497b62fca8bad9c6a3386f211b7f79c43
Parents: aecad3c
Author: Hennadii Stas <ut...@gmail.com>
Authored: Thu Mar 30 15:44:21 2017 +0300
Committer: Hennadii Stas <ut...@gmail.com>
Committed: Thu Apr 20 13:03:53 2017 +0300

----------------------------------------------------------------------
 libcloud/compute/drivers/ec2.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/e78c67e4/libcloud/compute/drivers/ec2.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/ec2.py b/libcloud/compute/drivers/ec2.py
index f3775df..400cb2c 100644
--- a/libcloud/compute/drivers/ec2.py
+++ b/libcloud/compute/drivers/ec2.py
@@ -5692,8 +5692,7 @@ class BaseEC2NodeDriver(NodeDriver):
         if max_results:
             params.update({'MaxResults': max_results})
 
-        response = self.connection.request(self.path, params=params,
-                                           method='GET').object
+        response = self.connection.request(self.path, params=params).object
 
         return self._to_volume_modifications(response)