.HIDE. ???

This commit is contained in:
Howl 2016-05-22 17:23:44 +02:00
parent d5caa1fdc2
commit 2638f8be2a
1 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ func main() {
log.Fatalln(err)
}
schiavo.Bunker.Send(fmt.Sprint("LISTENINGU STARTUATO ON", l.Addr()))
schiavo.Bunker.Send(fmt.Sprint("LISTENINGU STARTUATO ON ", l.Addr()))
// Accept connections in a new goroutine.
go http.Serve(l, engine)
@ -60,7 +60,7 @@ func main() {
} else {
// Resume accepting connections in a new goroutine.
schiavo.Bunker.Send(fmt.Sprint("LISTENINGU RESUMINGU ON", l.Addr()))
schiavo.Bunker.Send(fmt.Sprint("LISTENINGU RESUMINGU ON ", l.Addr()))
go http.Serve(l, engine)
// Kill the parent, now that the child has started successfully.