Skip to content

Commit ede428a

Browse files
author
Roland Hedberg
committed
Don't add user information in underlying libraries.
Changed version of package.
1 parent ded56eb commit ede428a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def run_tests(self):
6363

6464
setup(
6565
name='pysaml2',
66-
version='1.0.2',
66+
version='1.0.3beta',
6767
description='Python implementation of SAML Version 2 to be used in a WSGI environment',
6868
# long_description = read("README"),
6969
author='Roland Hedberg',

src/saml2/client_base.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -532,8 +532,9 @@ def parse_authn_request_response(self, xmlstr, binding, outstanding=None):
532532
if resp is None:
533533
return None
534534
elif isinstance(resp, AuthnResponse):
535-
self.users.add_information_about_person(resp.session_info())
536-
logger.info("--- ADDED person info ----")
535+
#self.users.add_information_about_person(resp.session_info())
536+
#logger.info("--- ADDED person info ----")
537+
pass
537538
else:
538539
logger.error("Response type not supported: %s" % (
539540
saml2.class_name(resp),))

0 commit comments

Comments
 (0)