Skip to content

Commit f519bc6

Browse files
Merge pull request #482 from vascofernandes/master
Avoid repeated work when processing a SAML2 request
2 parents 2cdf670 + 8e03315 commit f519bc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/satosa/frontends/saml2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def _handle_authn_request(self, context, binding_in, idp):
235235
return ServiceError("Incorrect request from requester: %s" % e)
236236

237237
requester = resp_args["sp_entity_id"]
238-
context.state[self.name] = self._create_state_data(context, idp.response_args(authn_req),
238+
context.state[self.name] = self._create_state_data(context, resp_args,
239239
context.request.get("RelayState"))
240240

241241
subject = authn_req.subject

0 commit comments

Comments
 (0)