Hacker News new | ask | show | jobs
by mseepgood 4827 days ago
A supervisor is easily implemented in Go: http://code.google.com/p/gosup/source/browse/supervisor/supe...
1 comments

What happens if one of the children calls panic() ?
A Goroutine can catch any panic() via recover() and then signal bad health to the supervisor.