Skip to content

Commit f6e42d8

Browse files
committed
row.Err does not exist anymore
https://github.com/influxdata/influxdb/pull/7235/files Signed-off-by: Davanum Srinivas <[email protected]>
1 parent 962aef2 commit f6e42d8

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

cmd/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

cmd/internal/storage/influxdb/influxdb.go

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)