Note #2023-12-01-001
> Reply to Missing exit signals for linked processes
I can think of two reasons:
- You're not setting trap_exit and the process is exiting with
normal
reason. But it seems you're setting this. - The exit message is somehow getting "eaten" by some other
receive -> _
in your gen_server process.
Also, I don't think live reload should affect this. It should work across reloads.
Can you share the full code of your gen_server?
Interactions
@srijan.ch Thanks, I haven't considered (2). Since I'm not receiving manually, that would be a LiveView bug...