Skip to content
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

Fix actor init timeout sending exit message to linked parent #92

Merged
merged 1 commit into from
Dec 10, 2024

Conversation

sbergen
Copy link
Contributor

@sbergen sbergen commented Dec 6, 2024

Resolves #73

In addition to returning an error, a timed out actor init would also propagate the exit message to the parent process, causing it to get killed unless it was trapping exits.

@lpil
Copy link
Member

lpil commented Dec 9, 2024

Reading the source for proc_lib I can't see anything that suggests that the process should unlink. And wouldn't doing this result in supervisors not working?

Perhaps the problem here is how it is communicated. Or is there a more suited API?

@sbergen
Copy link
Contributor Author

sbergen commented Dec 9, 2024

Reading the source for proc_lib I can't see anything that suggests that the process should unlink. And wouldn't doing this result in supervisors not working?

The unlinking happens here, called if a timeout occurs.

Perhaps the problem here is how it is communicated. Or is there a more suited API?

The problem is that if we don't unlink, actor.InitTimeout is pretty pointless, as it can't normally be handled by the caller. If I see a Result being returned, I don't expect to crash unless I trap exits.

InitCrashed is also a bit problematic for this reason, but in Erlang, as far as I understood (I've never actually written any Erlang), for that one you would need to trap exits, so perhaps it could be fixed with clearer documentation?

If function start_link/3,4,5 is used and the process crashes before it has called init_ack/1,2, {error, Reason} is returned if the calling process traps exits.

Copy link
Member

@lpil lpil left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wonderful, thank you. I totally missed that while reading the Erlang there. Great work!

@lpil lpil merged commit 4e338a3 into gleam-lang:main Dec 10, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Actor's init taking longer than init_timeout causes entire program to crash
2 participants