mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-09-07 05:34:43 +08:00
INWX: Support up to 2,147,483,647 domains (old limit was 20) (#2566)
Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com>
This commit is contained in:
parent
69bf714852
commit
4e3f5f31c7
1 changed files with 1 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue