-
Notifications
You must be signed in to change notification settings - Fork 113
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
Crash on shutdown in dispatch_awaiting_callers
#120
Comments
Any updates on this? We're seeing the same behavior causing flaky tests. Lately, for some reason, it started failing fairly often. |
We've been having this happen more frequently (almost every CI run, rarely when run locally) since we updated to elixir 1.15. I've tried fixing this locally by changing the |
Cross linking with opened pull requests that are attempting to fix this issue (I think): |
I noticed a flaky test failure with the reason
** (exit) shutdown
, and the following output logged:Looking at the referenced code, it seems
GenServer.stop/3
is not being called correctly: the first argument is supposed to be a reference to a server, but the Bypass code isGenServer.stop(:normal)
. So if there are anycallers_awaiting_exit
, this code will always crash.The text was updated successfully, but these errors were encountered: