You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(sonarqube): bypass 10K result cap by fetching issues per-rule
Closes#33
The issues/search API enforces p*ps <= 10000. With PAGE_SIZE=500, page
21 returns HTTP 400. Fix: iterate per-rule instead of passing all ~600
rules in one query. Each single-rule query stays well under 10K.
Also fixes off-by-one in page count (ceiling division) and adds HTTP
status checking before reading response body.
0 commit comments