-
Notifications
You must be signed in to change notification settings - Fork 23
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: Remove session expiry tracker #2988
fix: Remove session expiry tracker #2988
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #2988 +/- ##
=======================================
Coverage 98.32% 98.33%
=======================================
Files 903 902 -1
Lines 13375 13318 -57
Branches 3565 3487 -78
=======================================
- Hits 13151 13096 -55
+ Misses 220 218 -2
Partials 4 4
Continue to review full report in Codecov by Sentry.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅ ✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #2988 +/- ##
=======================================
Coverage 98.32% 98.33%
=======================================
Files 903 902 -1
Lines 13375 13318 -57
Branches 3499 3487 -12
=======================================
- Hits 13151 13096 -55
+ Misses 220 218 -2
Partials 4 4
Continue to review full report in Codecov by Sentry.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found @@ Coverage Diff @@
## main #2988 +/- ##
=======================================
Coverage 98.32% 98.33%
=======================================
Files 903 902 -1
Lines 13375 13318 -57
Branches 3499 3487 -12
=======================================
- Hits 13151 13096 -55
+ Misses 220 218 -2
Partials 4 4
Continue to review full report in Codecov by Sentry.
|
Bundle ReportChanges will decrease total bundle size by 1.16kB ⬇️
|
Bundle ReportChanges will decrease total bundle size by 1.16kB ⬇️
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## main #2988 +/- ##
================================================
+ Coverage 98.32000 98.33000 +0.01000
================================================
Files 903 902 -1
Lines 13375 13318 -57
Branches 3545 3558 +13
================================================
- Hits 13151 13096 -55
+ Misses 220 218 -2
Partials 4 4
Continue to review full report in Codecov by Sentry.
|
✅ Deploy preview for gazebo ready!Previews expire after 1 month automatically.
|
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.
Looks all good to me, just one question, what is the expiry value for COOKIE_SESSION_EXPIRY
? Wondering if we should leave in a clean up for a bit of time to remove the cookie from the users browser.
fb09b1a
to
131b02b
Compare
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
Removes the SessionExpiryTracker code that requires users to log back in every eight hours. Corresponding PR API side to come, but this can be merged without issue.
We will be replacing this behaviour with something else in a future PR.
Also adds code to clean up old Cookie and localStorage items. To be removed later.
Part of codecov/engineering-team#2025