Before this fix, previous exec process would not be killed between
restarts (either from rs or file changes). This means the process' would pile up over time and that is
definitely not a good thing.
However, with this patch, the exec process sends the Child handle to the
main event loop through a new channel where they get dealt with before
the new exec process is spawned to take it's place.
Closes #20
Before this fix, previous exec process would not be killed between restarts (either from
rs
or file changes). This means the process' would pile up over time and that is definitely not a good thing.However, with this patch, the exec process sends the
Child
handle to the main event loop through a new channel where they get dealt with before the new exec process is spawned to take it's place.