File tree Expand file tree Collapse file tree 2 files changed +1
-8
lines changed
internal/storage/influxdb Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -96,8 +96,8 @@ require (
9696 github.com/klauspost/compress v1.18.0 // indirect
9797 github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible // indirect
9898 github.com/moby/docker-image-spec v1.3.1 // indirect
99- github.com/moby/sys/atomicwriter v0.1.0 // indirect
10099 github.com/moby/sys/mountinfo v0.7.2 // indirect
100+ github.com/moby/sys/sequential v0.6.0 // indirect
101101 github.com/moby/sys/userns v0.1.0 // indirect
102102 github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
103103 github.com/opencontainers/cgroups v0.0.2 // indirect
Original file line number Diff line number Diff line change @@ -521,13 +521,6 @@ func checkResponseForErrors(response *influxdb.Response) error {
521521 if result .Err != nil {
522522 return fmt .Errorf (msg , result .Err )
523523 }
524- if result .Series != nil {
525- for _ , row := range result .Series {
526- if row .Err != nil {
527- return fmt .Errorf (msg , row .Err )
528- }
529- }
530- }
531524 }
532525 }
533526 return nil
You can’t perform that action at this time.
0 commit comments