summaryrefslogtreecommitdiff
path: root/src/leap/keymanager/__init__.py
diff options
context:
space:
mode:
authorKali Kaneko <kali@futeisha.org>2013-09-12 14:04:43 +0200
committerKali Kaneko <kali@futeisha.org>2013-09-12 14:04:43 +0200
commitdb996a3e2f18baab07a36bd5d1db4f312bf569e1 (patch)
tree9d0affec6d98986e3455d54c27a010e67ccd127e /src/leap/keymanager/__init__.py
parentce411ee35e22a4d17b953ce4f8d22c7b648857c7 (diff)
parent53bdad6a6bb43113754f2cdf137abeea27bf8507 (diff)
Merge tag '0.3.2' into debian-0.3.2
Tag leap.keymanager version 0.3.2
Diffstat (limited to 'src/leap/keymanager/__init__.py')
-rw-r--r--src/leap/keymanager/__init__.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/leap/keymanager/__init__.py b/src/leap/keymanager/__init__.py
index 05cbcca..2f39ad9 100644
--- a/src/leap/keymanager/__init__.py
+++ b/src/leap/keymanager/__init__.py
@@ -127,11 +127,16 @@ class KeyManager(object):
self._ca_cert_path is not None,
'We need the CA certificate path!')
res = self._fetcher.get(uri, data=data, verify=self._ca_cert_path)
- # assert that the response is valid
- res.raise_for_status()
- leap_assert(
- res.headers['content-type'].startswith('application/json'),
- 'Content-type is not JSON.')
+ # Nickserver now returns 404 for key not found and 500 for
+ # other cases (like key too small), so we are skipping this
+ # check for the time being
+ # res.raise_for_status()
+
+ # Responses are now text/plain, although it's json anyway, but
+ # this will fail when it shouldn't
+ # leap_assert(
+ # res.headers['content-type'].startswith('application/json'),
+ # 'Content-type is not JSON.')
return res
def _put(self, uri, data=None):