Browse Source

Merge pull request #1543 from Rid/patch-2

Fix DNSimple when zone has > 100 records
neil 6 years ago
parent
commit
06302871bc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dnsapi/dns_dnsimple.sh

+ 1 - 1
dnsapi/dns_dnsimple.sh

@@ -152,7 +152,7 @@ _get_records() {
   sub_domain=$3
   sub_domain=$3
 
 
   _debug "fetching txt records"
   _debug "fetching txt records"
-  _dnsimple_rest GET "$account_id/zones/$domain/records?per_page=100"
+  _dnsimple_rest GET "$account_id/zones/$domain/records?per_page=5000&sort=id:desc"
 
 
   if ! _contains "$response" "\"id\":"; then
   if ! _contains "$response" "\"id\":"; then
     _err "failed to retrieve records"
     _err "failed to retrieve records"