summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Wason <rectalogic@rectalogic.com>2018-11-28 12:46:24 -0500
committerAndrew Wason <rectalogic@rectalogic.com>2018-11-28 12:46:24 -0500
commit6a179ff4ae2c6c61ced6eff8f8c0b41966cec35b (patch)
treeb45cfc1f33d9e833346d50a59c359506b6a99639
parent673f10c89ffb9ac3808f05c6976c32e89b1aeffa (diff)
downloadpysaml2-6a179ff4ae2c6c61ced6eff8f8c0b41966cec35b.tar.gz
Do not swallow response verification exceptions.
Fixes IdentityPython/pysaml2#571
-rw-r--r--src/saml2/entity.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/saml2/entity.py b/src/saml2/entity.py
index 7b857373..e69fc1aa 100644
--- a/src/saml2/entity.py
+++ b/src/saml2/entity.py
@@ -1207,8 +1207,6 @@ class Entity(HTTPBase):
else:
response.require_signature = require_signature
response = response.verify(keys)
- except Exception as err:
- logger.error("Exception verifying assertion: %s" % err)
else:
assertions_are_signed = True
finally: