Allow unknown attribute configuration used.
This commit is contained in:
@@ -507,11 +507,13 @@ class Base(Entity):
|
|||||||
|
|
||||||
resp = None
|
resp = None
|
||||||
if xmlstr:
|
if xmlstr:
|
||||||
kwargs = {"outstanding_queries": outstanding,
|
kwargs = {
|
||||||
|
"outstanding_queries": outstanding,
|
||||||
"allow_unsolicited": self.allow_unsolicited,
|
"allow_unsolicited": self.allow_unsolicited,
|
||||||
"return_addr": self.service_url(),
|
"return_addr": self.service_url(),
|
||||||
"entity_id": self.config.entityid,
|
"entity_id": self.config.entityid,
|
||||||
"attribute_converters": self.config.attribute_converters}
|
"attribute_converters": self.config.attribute_converters,
|
||||||
|
"allow_unknown_attributes": self.config.allow_unknown_attributes}
|
||||||
try:
|
try:
|
||||||
resp = self._parse_response(xmlstr, AuthnResponse,
|
resp = self._parse_response(xmlstr, AuthnResponse,
|
||||||
"assertion_consumer_service",
|
"assertion_consumer_service",
|
||||||
|
Reference in New Issue
Block a user