cloudflare-ddns
cloudflare-ddns copied to clipboard
fix: record missing when record count greater than 20
According to the doc https://api.cloudflare.com/#dns-records-for-a-zone-list-dns-records
API only returns 1 page, and 20 records per page, so when record count greater than 20, some record will missing in local cache, then RecordNotFound occur. This patch changes the page size to 100, the max page size, to avoid the issue.