mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 04:11:03 +00:00
Merge pull request #1024 from CiscoCloud/0.4.0
Log error when ListenAndServe fails
This commit is contained in:
commit
095c9a8e05
1 changed files with 5 additions and 1 deletions
|
@ -177,7 +177,11 @@ func main() {
|
||||||
|
|
||||||
http.Handle("/static/", static())
|
http.Handle("/static/", static())
|
||||||
http.Handle("/", r)
|
http.Handle("/", r)
|
||||||
http.ListenAndServe(settings.Server.Addr, nil)
|
|
||||||
|
err = http.ListenAndServe(settings.Server.Addr, nil)
|
||||||
|
if err != nil {
|
||||||
|
log.Error("Cannot start server: ", err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// static is a helper function that will setup handlers
|
// static is a helper function that will setup handlers
|
||||||
|
|
Loading…
Reference in a new issue