1
0
mirror of https://github.com/Luzifer/tex-api.git synced 2024-09-19 09:32:56 +00:00

Stop waiting on error

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2017-03-05 23:50:13 +01:00
parent 7a503be0fa
commit bcefbe8c79
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E

16
main.go
View File

@ -229,7 +229,11 @@ func waitForJob(res http.ResponseWriter, r *http.Request) {
return
}
if status.Status != statusFinished {
switch status.Status {
case statusCreated:
fallthrough
case statusStarted:
u := urlMust(router.Get("waitForJob").URL("uid", uid.String()))
u.Query().Set("loop", strconv.Itoa(loop))
@ -237,10 +241,14 @@ func waitForJob(res http.ResponseWriter, r *http.Request) {
http.Redirect(res, r, u.String(), http.StatusFound)
return
}
u := urlMust(router.Get("downloadAssets").URL("uid", uid.String()))
http.Redirect(res, r, u.String(), http.StatusFound)
case statusError:
http.Error(res, "Processing ran into an error.", http.StatusInternalServerError)
case statusFinished:
u := urlMust(router.Get("downloadAssets").URL("uid", uid.String()))
http.Redirect(res, r, u.String(), http.StatusFound)
}
}
func shouldPackFile(extension string) bool {