From 4e3f5f31c74af8ca6aa034a864c3a99d94a1856e Mon Sep 17 00:00:00 2001 From: Patrik Kernstock Date: Wed, 27 Sep 2023 14:13:07 +0100 Subject: [PATCH] INWX: Support up to 2,147,483,647 domains (old limit was 20) (#2566) Co-authored-by: Tom Limoncelli --- providers/inwx/inwxProvider.go | 1 + 1 file changed, 1 insertion(+) diff --git a/providers/inwx/inwxProvider.go b/providers/inwx/inwxProvider.go index 3c50f7c274..6768dd24f1 100644 --- a/providers/inwx/inwxProvider.go +++ b/providers/inwx/inwxProvider.go @@ -402,6 +402,7 @@ func (api *inwxAPI) GetRegistrarCorrections(dc *models.DomainConfig) ([]*models. // fetchNameserverDomains returns the domains configured in INWX nameservers func (api *inwxAPI) fetchNameserverDomains() error { request := &goinwx.DomainListRequest{} + request.PageLimit = 2147483647 // int32 max value, highest number API accepts info, err := api.client.Domains.List(request) if err != nil { return err