fix int max perf counter bug

This commit is contained in:
Azareal 2020-02-28 15:06:16 +10:00
parent ca8411a519
commit 08891853e6
1 changed files with 3 additions and 2 deletions

View File

@ -135,11 +135,13 @@ func renderTemplate3(tmplName, hookName string, w http.ResponseWriter, r *http.R
}
FootHeaders(w, h)
if h.Zone != "error" {
since := time.Since(h.StartedAt)
//if h.CurrentUser.IsAdmin {
h.Elapsed1 = since.String()
//}
co.PerfCounter.Push(since)
co.PerfCounter.Push(since/*, false*/)
}
if c.RunPreRenderHook("pre_render_"+hookName, w, r, &h.CurrentUser, pi) {
return nil
}
@ -147,7 +149,6 @@ func renderTemplate3(tmplName, hookName string, w http.ResponseWriter, r *http.R
if err != nil {
return err
}
//co.PerfCounter.Push(since)
return nil
}