Y
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
asabil
4827 days ago
What happens if one of the children calls panic() ?
link
mseepgood
4827 days ago
A Goroutine can catch any panic() via recover() and then signal bad health to the supervisor.
link