Skip to content

Commit ee5a376

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 bc9898c commit ee5a376

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

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)