We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@dustin, currently no way to get older crashes, can we do something like this (totally untested/written in github comment editor 😁)?
func handleRecentCrashes(w http.ResponseWriter, r *http.Request) { c := appengine.NewContext(r) start, err := strconv.Atoi(r.FormValue("start")) if err != nil || start < 0 { start = 0 } q := datastore.NewQuery("CrashData").Order("-timestamp").Offset(start).Limit(50) res := []CrashData{} if err := fillKeyQuery(c, q, &res); err != nil { log.Errorf(c, "Error fetching crash results: %v", err) http.Error(w, err.Error(), 500) return } mustEncode(c, w, r, res) }
The text was updated successfully, but these errors were encountered:
dustin
No branches or pull requests
@dustin, currently no way to get older crashes, can we do something like this (totally untested/written in github comment editor 😁)?
The text was updated successfully, but these errors were encountered: