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 (
96
96
github.com/klauspost/compress v1.18.0 // indirect
97
97
github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible // indirect
98
98
github.com/moby/docker-image-spec v1.3.1 // indirect
99
- github.com/moby/sys/atomicwriter v0.1.0 // indirect
100
99
github.com/moby/sys/mountinfo v0.7.2 // indirect
100
+ github.com/moby/sys/sequential v0.6.0 // indirect
101
101
github.com/moby/sys/userns v0.1.0 // indirect
102
102
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
103
103
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 {
521
521
if result .Err != nil {
522
522
return fmt .Errorf (msg , result .Err )
523
523
}
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
- }
531
524
}
532
525
}
533
526
return nil
You can’t perform that action at this time.
0 commit comments