Skip to content

Commit

Permalink
inwx: workaround allowing use of >20 domains
Browse files Browse the repository at this point in the history
  • Loading branch information
patschi committed Sep 23, 2023
1 parent 08afef7 commit 17885d4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions providers/inwx/inwxProvider.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 17885d4

Please sign in to comment.