We've just noticed that not all neuro-sig packages are being listed in the neuro-sig group in Koschei:
https://koschei.fedoraproject.org/groups/neuro-sig
Only 19 packages are shown, but the neuro-sig maintains ~170 packages together: https://src.fedoraproject.org/group/neuro-sig
They were all listed before correctly in Koschei and were automatically synced from src.fp.o too.
Whenever convenient please.
Metadata Update from @smooge: - Issue priority set to: Waiting on Assignee (was: Needs Review) - Issue tagged with: koschei, low-gain, low-trouble, ops
@mizdebsk can you take a look?
Metadata Update from @mizdebsk: - Issue assigned to mizdebsk
This is caused by recent API breakage in Pagure, https://pagure.io/pagure/c/93bdbd2 Now group API returns only first 20 projects instead of all: curl -s "https://src.fedoraproject.org/api/0/group/neuro-sig?projects=1" | jq -r '.projects[]|select(.namespace=="rpms").name' | wc -l prints 20 The number can be increased to 100 by adding per_page=100 argument to the call, but it doesn't fix the issue fully.
curl -s "https://src.fedoraproject.org/api/0/group/neuro-sig?projects=1" | jq -r '.projects[]|select(.namespace=="rpms").name' | wc -l
20
per_page=100
Upstream issue: https://pagure.io/pagure/issue/5110
Login to comment on this ticket.