This commit is contained in:
Ulric Qin 2022-05-11 17:42:16 +08:00
parent 7978cc6b80
commit 84c21b4801
1 changed files with 5 additions and 0 deletions

View File

@ -113,6 +113,11 @@ func (r *Reader) read() {
// queue closed
return
}
if item == nil {
continue
}
series = append(series, convert(item))
count++
if count >= batch {