Skip to content

Commit 62f1363

Browse files
author
Guillaume Rousse
committed
add issuer parameter in redirection
1 parent e12feee commit 62f1363

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/satosa/micro_services/attribute_check.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def process(self, context, data):
4141
missing_attributes.append(self.internal_attributes["attributes"][attribute]["saml"])
4242

4343
if missing_attributes:
44-
parameters = []
44+
parameters = [ "entityID={}".format(data.auth_info.issuer) ]
4545
for missing_attribute in missing_attributes:
4646
parameters.append("attributes[]={}".format(", ".join(missing_attribute)))
4747

0 commit comments

Comments
 (0)