-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Alternative fix to dead lock challenge #1255
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
Merged
bbakerman
merged 18 commits into
graphql-java:master
from
bbakerman:hanging_dataloader_callstack
Oct 3, 2018
Merged
Alternative fix to dead lock challenge #1255
bbakerman
merged 18 commits into
graphql-java:master
from
bbakerman:hanging_dataloader_callstack
Oct 3, 2018
Conversation
This file contains hidden or 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
This reverts commit 38dfab1
Member
Author
|
I was able to replicate 100% of the time without the change as per @tinnou original test |
andimarek
reviewed
Oct 2, 2018
| public void dispatchIfNotDispatchedBefore(int level, Runnable dispatch) { | ||
| public boolean dispatchIfNotDispatchedBefore(int level) { | ||
| if (dispatchedLevels.contains(level)) { | ||
| Assert.assertShouldNeverHappen("level " + level + " already dispatched"); |
Member
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.
you could actually return the Assert
bbakerman
added a commit
to bbakerman/graphql-java
that referenced
this pull request
Oct 3, 2018
* Added @OverRide as part of errorprone code health check * Revert "Added @OverRide as part of errorprone code health check" This reverts commit 38dfab1 * Brads attempt at graphql-java#1234 * Missed the test
Merged
bbakerman
added a commit
that referenced
this pull request
Oct 3, 2018
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.
See #1234
This is similar but more deliberate. That is we work out IF we have to dispatch inside the lock and then do the dispatch outside it.
I think this is a smidge cleaner than the other PR. (but the same effect)