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 2013/12/30 14:34:01 UTC

[3/6] git commit: Add allow_insecure=True attribute to the HostVirtual connection class.

Add allow_insecure=True attribute to the HostVirtual connection class.


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

Branch: refs/heads/trunk
Commit: de916067b3eeecc5d248a9095e7c9542b883741e
Parents: 78230d9
Author: Tomaz Muraus <to...@apache.org>
Authored: Mon Dec 30 14:17:39 2013 +0100
Committer: Tomaz Muraus <to...@apache.org>
Committed: Mon Dec 30 14:17:39 2013 +0100

----------------------------------------------------------------------
 libcloud/common/hostvirtual.py | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/de916067/libcloud/common/hostvirtual.py
----------------------------------------------------------------------
diff --git a/libcloud/common/hostvirtual.py b/libcloud/common/hostvirtual.py
index 1c48308..f98f3a1 100644
--- a/libcloud/common/hostvirtual.py
+++ b/libcloud/common/hostvirtual.py
@@ -41,6 +41,8 @@ class HostVirtualException(LibcloudError):
 class HostVirtualConnection(ConnectionKey):
     host = API_HOST
 
+    allow_insecure = False
+
     def add_default_params(self, params):
         params['key'] = self.key
         return params