diff --git a/.codecov.yml b/.codecov.yml index 607c3b8a1c..0845064155 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -10,3 +10,4 @@ coverage: target: auto threshold: 5 base: auto + informational: true diff --git a/query.go b/query.go index da3ddfbff8..4c22770972 100644 --- a/query.go +++ b/query.go @@ -79,9 +79,9 @@ func (s Statistics) Add(other Statistics) Statistics { RequeueDuration: s.RequeueDuration + other.RequeueDuration, ExecuteDuration: s.ExecuteDuration + other.ExecuteDuration, Concurrency: s.Concurrency + other.Concurrency, - RuntimeErrors: errs, MaxAllocated: s.MaxAllocated + other.MaxAllocated, TotalAllocated: s.TotalAllocated + other.TotalAllocated, + RuntimeErrors: errs, Metadata: md, } }