From cf7b22c466b0bc8d109bbb7ee79189b5ec62835e Mon Sep 17 00:00:00 2001 From: Egon Elbre Date: Sun, 19 Jan 2020 19:57:42 +0200 Subject: [PATCH] satellite/satellitedb: add missing err check Change-Id: I502838f78f1871315597b488602c0f1112612981 --- satellite/satellitedb/attribution.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/satellite/satellitedb/attribution.go b/satellite/satellitedb/attribution.go index d0e5ea054..d1758da4f 100644 --- a/satellite/satellitedb/attribution.go +++ b/satellite/satellitedb/attribution.go @@ -166,7 +166,7 @@ func (keys *attributionDB) QueryAttribution(ctx context.Context, partnerID uuid. } results = append(results, r) } - return results, nil + return results, Error.Wrap(rows.Err()) } func attributionFromDBX(info *dbx.ValueAttribution) (*attribution.Info, error) {