We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e12feee commit 62f1363Copy full SHA for 62f1363
src/satosa/micro_services/attribute_check.py
@@ -41,7 +41,7 @@ def process(self, context, data):
41
missing_attributes.append(self.internal_attributes["attributes"][attribute]["saml"])
42
43
if missing_attributes:
44
- parameters = []
+ parameters = [ "entityID={}".format(data.auth_info.issuer) ]
45
for missing_attribute in missing_attributes:
46
parameters.append("attributes[]={}".format(", ".join(missing_attribute)))
47
0 commit comments