Form dropdown lengths limited to PAGINATE_COUNT #2483
Labels
status: accepted
This issue has been accepted for implementation
type: bug
A confirmed report of unexpected behavior in the application
Environment
Steps to Reproduce
PAGINATE_COUNT = 50
in configuration.py and restart the NetBox service.Expected Behavior
All of the VLANs should appear in the list.
Observed Behavior
Only the first 50 VLANs are listed.
This is a regression introduced in 3a88e43 while attempting to resolve #2406. Removing the hard-coded limit of 1000 results in the API returning only default page length.
Temporary workaround: Set
PAGINATE_COUNT = 1000
in configuration.py and restart the NetBox service. Note that this may result in increased load on the server.The text was updated successfully, but these errors were encountered: