-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Hung Build #3061
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
Comments
According that stack trace it looks like the story is only about the cases where we have a |
I still have the full thread dump; I'll find out which threads own the locks. |
Oh - it's a mutual deadlock between those two threads. |
A couple tests with an embedded DB don't have a |
Fixes #3061 Without a `@DirtiesContext` we keep not only a ctx in the cache, but also an embedded DB instance, which is shared between contexts. When ctx cache clean up happens, several ctxes would like to destroy their associated embedded DB which, essentially, is the same in-memory instance * The `@DirtiesContext` give us a chance to destroy embedded DB for the particular ctx in isolation
The text was updated successfully, but these errors were encountered: