From 17885d4bb36282dea228561b0315cd44c9c67673 Mon Sep 17 00:00:00 2001 From: Patrik Kernstock Date: Sat, 23 Sep 2023 18:09:44 +0100 Subject: [PATCH] inwx: workaround allowing use of >20 domains --- 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