tun2: goroutine it up fam

This commit is contained in:
Cadey Ratio 2017-03-26 16:11:59 -07:00
parent 7cf2a9a616
commit d25fe6c7e7
1 changed files with 28 additions and 26 deletions

View File

@ -159,6 +159,7 @@ func (s *Server) ListenAndServe() error {
s.connlock.Lock()
for _, c := range s.conns {
go func() {
req, err := http.NewRequest("GET", "http://backend/health", nil)
if err != nil {
panic(err)
@ -193,6 +194,7 @@ func (s *Server) ListenAndServe() error {
ln.Log(ln.F{
"action": "ping_health_is_good",
}, c.F())
}()
}
s.connlock.Unlock()