Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
Merge pull request #84 from aandryashin/master
Browse files Browse the repository at this point in the history
Fix #83
  • Loading branch information
vania-pooh authored Jun 17, 2017
2 parents d5c2cdc + e0a0907 commit 8f0e66c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,9 @@ func main() {
Addr: listen,
Handler: mux(),
}
go log.Fatal(server.ListenAndServe())
go func() {
log.Fatal(server.ListenAndServe())
}()

<-stop

Expand Down

0 comments on commit 8f0e66c

Please sign in to comment.