From 577c7602dc8c8b13a6031d2b132bed11d84ac79e Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Fri, 17 Jan 2020 10:59:12 +0100 Subject: [PATCH] cmd/devp2p: lower the Route53 limit Seems like we're not measuring RDATA size the same way the AWS API does. Just use a lower limit to make it work. --- cmd/devp2p/dns_route53.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/devp2p/dns_route53.go b/cmd/devp2p/dns_route53.go index 86f88a378c..0d3f8e06c8 100644 --- a/cmd/devp2p/dns_route53.go +++ b/cmd/devp2p/dns_route53.go @@ -34,7 +34,7 @@ import ( // The Route53 limits change sets to this size. DNS changes need to be split // up into multiple batches to work around the limit. -const route53ChangeLimit = 32000 +const route53ChangeLimit = 30000 var ( route53AccessKeyFlag = cli.StringFlag{