-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 race condition in logOut. #1005
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set req.authInfo when using assignProperty option
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This fixes a race condition where the session is saved but then modified again in the
keepSessionInfo
branch and the callback is called before save is called again. This patch issues a second save in thekeepSessionInfo
eliminating the race condition. Fixes #1004.Checklist
$ make test
) executes successfully.I have left the following unchecked with an explanation:
$ make lint
) executes successfully.When I ran
make lint
I encountered an error becausejshint
is expected on the path (as opposed to being installed by npm and being called withnpx
for example). When I added it to the path it threw several errors but none of them were related to this patch. These errors are all from the existing codebase. Maybe I have run this in error somehow or I'm missing a config file.I can't see how to replicate the failing condition in the current tests. I'm looking at
request.test.js
and I'm unsure how to simulate a backend which takes a while to set the values. Any guidance here welcome.I do not think any documentation changes will be necessary for this under-the-hood fix which will be transparent to the user.