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.
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
Plumbing flags required for running tests with the DDC module system. #2295
Plumbing flags required for running tests with the DDC module system. #2295
Changes from 11 commits
61f964b
e17f872
6a01aad
2e4d0a2
188a5ae
c055748
cc66e55
e37da6b
dcbea77
40ac194
83d5feb
6d5bcfe
2cff2ce
84ee640
77bd6eb
43e6446
69fa508
7330d99
b30a41f
5b9854e
c606696
dafca8a
819bcf5
42c674e
f4ae7e2
4f143c9
ac28b96
e4c7df0
dbcb892
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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'l like to understand this better - could you please add a description in comments describing why it this needed?
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 added a short description to the this PR's description.
Basically, there's a race condition between two 'sister' async events that only succeeds if events happen to interleave.
Basically Promise Train A -> B -> C and Train X -> Y -> Z hangs iff the execution is not A -> X -> B -> Y (or something similar).
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 am curious about the exact details here (given that the plumbing changes the interface and will need a major version update) - could you please add more information on what exactly is the set of events and how it hangs? Also adding the comments in code so we can avoid this in the future.