diff --git a/report/metrics.go b/report/metrics.go index 036c0089e..63315c622 100644 --- a/report/metrics.go +++ b/report/metrics.go @@ -238,6 +238,9 @@ func renderTime(t time.Time) string { } func parseTime(s string) time.Time { + if s == "" { + return time.Time{} + } t, _ := time.Parse(time.RFC3339Nano, s) return t }