mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
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.
This commit is contained in:
parent
91b9f5d36a
commit
577c7602dc
1 changed files with 1 additions and 1 deletions
|
|
@ -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{
|
||||
|
|
|
|||
Loading…
Reference in a new issue