Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[server] Redirect without hitting sorry endpoint. #5568

Merged
merged 1 commit into from
Sep 8, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions components/server/src/auth/generic-auth-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -356,11 +356,11 @@ export class GenericAuthProvider implements AuthProvider {
message = 'OAuth Error. Please try again.'; // this is a 5xx response from authorization service
}

if (!UnconfirmedUserException.is(err)) {
// user did not accept ToS. Don't count this towards the error burn rate.
increaseLoginCounter("failed", this.host);
if (UnconfirmedUserException.is(err)) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

praise: Short and sweet!

return this.sendCompletionRedirectWithError(response, { error: err.message });
}

increaseLoginCounter("failed", this.host);
log.error(context, `(${strategyName}) Redirect to /sorry from verify callback`, err, { ...defaultLogPayload, err });
response.redirect(this.getSorryUrl(message));
return;
Expand Down