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.