riker-rs / riker

Easily build efficient, highly concurrent and resilient applications. An Actor Framework for Rust.
https://riker.rs
MIT License
1.02k stars 69 forks source link

Actor::post_start is never called #75

Closed mrjoe7 closed 4 years ago

mrjoe7 commented 5 years ago

Code in https://github.com/riker-rs/riker/blob/master/src/kernel/mailbox.rs#L307-L311 is commented out, so Actor::post_start is never called.

tupshin commented 4 years ago

This should either be removed from the api/documentation or get fixed. Is there a reason that code was disabled?

hardliner66 commented 4 years ago

It seems the post_start was only called if persistence is enabled, but because the persistence code is not functional and commented out, this was commented out too.

I created a pull request because I think this can safely be re-enabled.