-
-
Notifications
You must be signed in to change notification settings - Fork 56
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
Implementation of the exit_process for Actor #86
Conversation
Hi, @bighelmet7! I ran into the same issue recently, but didn't spot your PR when looking for relevant PRs, as the title didn't include any references to the public functionality that was misbehaving (which I would say is I haven't been doing much open source stuff on GitHub recently (other than my own projects), so I also didn't think of opening an issue in addition to a PR, to bring more visibility for what is actually being fixed. @lpil it might be a good idea to add As for the content of the PR itself, comparing to my PR, the main difference in the implementation seems to be that here we're still exiting the process with an abnormal reason after a failed init. In my opinion, this should not happen, as the error is already included in the return value of Also, I'm using |
@sbergen Sorry, for some reason I didn't receive a notification for this PR. And, today, I was doing some small testing with the new gleam release and remembered about the Actor PR that I opened a while ago. Should I close it? I saw that you got yours #88 merged 🥳 Did you manage to fix your tests with the trapped exit? I remember also having a bunch of flaky errors around it, but when I used processes with messages had a more consistent behaviour. |
No problem :)
I think it can be closed.
If we're talking about this issue, it will be fixed here. |
Amazing! thanks @sbergen 🙏 |
Context
In my journey of learning how the OTP works, when I tried to send an exit signal to an Actor I noticed that the
exit_process
wasn't fully implemented. So, I tried to give it a try and implement it based on:Apologies in advance if this isn't the correct way of implementing the Shutdown protocol. I will be more than happy to amend the PR with a more correct Shutdown protocol based on the received feedback.
Changes
otp/actor.gleam
(I can move this to a separate PR, if necessary).exit_process
now supports Normal, Killed and Abnormal exit reasons.failed_init_test
: this test was blocking the whole actor test from running due to an unhandled crash.exit_process
implementation: this covers the Normal, Killed and Abnormal reasons.