diff options
Diffstat (limited to 'internal/postgres/requeue.go')
| -rw-r--r-- | internal/postgres/requeue.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/postgres/requeue.go b/internal/postgres/requeue.go index b1b1d52a..618ad0e8 100644 --- a/internal/postgres/requeue.go +++ b/internal/postgres/requeue.go @@ -174,7 +174,7 @@ func (db *DB) GetNextModulesToFetch(ctx context.Context, limit int) (_ []*intern collect := func(rows *sql.Rows) error { // Scan the last two columns separately; they are in the query only for sorting. - scan := func(dests ...interface{}) error { + scan := func(dests ...any) error { var npkg int return rows.Scan(append(dests, &npkg)...) } |
