2
0
mirror of https://github.com/VinylDNS/vinyldns synced 2025-08-22 10:10:12 +00:00

Merge pull request #1195 from nspadaccino/hotfix-membership-maxitems

Hotfix: Raise Limit of Maximum Items in a Group List to 3000
This commit is contained in:
Nicholas Spadaccino 2022-10-26 14:59:49 -04:00 committed by GitHub
commit 696a6a64a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,7 @@ vinyldns {
batchchange-routing-max-items-limit = 100
membership-routing-default-max-items = 100
membership-routing-max-items-limit = 1000
membership-routing-max-groups-list-limit = 1500
membership-routing-max-groups-list-limit = 3000
recordset-routing-default-max-items= 100
zone-routing-default-max-items = 100
zone-routing-max-items-limit = 100

View File

@ -75,7 +75,7 @@ angular.module('service.groups', [])
query = null;
}
var params = {
"maxItems": 1500,
"maxItems": 3000,
"groupNameFilter": query,
"ignoreAccess": ignoreAccess
};