-
Notifications
You must be signed in to change notification settings - Fork 978
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
fix(oidc): grace period for continuity container on oidc callbacks #3915
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
if _, err := s.d.ContinuityManager().Continue(r.Context(), w, r, sessionName, continuity.WithPayload(&cntnr)); err != nil { | ||
if _, err := s.d.ContinuityManager().Continue(r.Context(), w, r, sessionName, | ||
continuity.WithPayload(&cntnr), | ||
continuity.WithExpireInsteadOfDelete(time.Minute), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we sure 1 minute is enough?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it should be enough, at least for the discussed use case
This was merged as part of another PR |
Or was it? |
It was not. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #3915 +/- ##
==========================================
+ Coverage 78.02% 78.08% +0.05%
==========================================
Files 362 362
Lines 25296 25341 +45
==========================================
+ Hits 19737 19787 +50
+ Misses 4047 4038 -9
- Partials 1512 1516 +4 ☔ View full report in Codecov by Sentry. |
Related issue(s)
Checklist
introduces a new feature.
contributing code guidelines.
vulnerability. If this pull request addresses a security vulnerability, I
confirm that I got the approval (please contact
[email protected]) from the maintainers to push
the changes.
works.
Further Comments