I have implemented an actix actor including the Supervised
trait. I then tried to start the actor in a supervised way using
let _: Addr<Unsync, _> = Supervisor::start(|_| MyActor::default());
Unfortunately when that actor stops it is not automatically restarted for some reason.
Dependency Versions
actix = "0.5"