mirror of https://github.com/perkeep/perkeep.git
buildbot: add some context to error
Change-Id: Ia0733909ffd4d9e9451ac663cb7ece799169ab7c
This commit is contained in:
parent
e3491e5515
commit
335f6416b9
|
@ -835,7 +835,10 @@ func killCamli() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func hitCamliUi() error {
|
func hitCamliUi() error {
|
||||||
return hitURL("http://localhost:3179/ui/")
|
if err := hitURL("http://localhost:3179/ui/"); err != nil {
|
||||||
|
return fmt.Errorf("could not reach camlistored UI page (dead server?): %v", err)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func hitURL(url string) (err error) {
|
func hitURL(url string) (err error) {
|
||||||
|
|
Loading…
Reference in New Issue