good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 87a411b8 authored by Felix Lange's avatar Felix Lange Committed by GitHub
Browse files

cmd/devp2p: lower route53 change limit again (#20819)

parent 1583e7d2
No related branches found
No related tags found
No related merge requests found
......@@ -32,9 +32,11 @@ import (
"gopkg.in/urfave/cli.v1"
)
// 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 = 30000
// Route53 limits change sets to 32k of 'RDATA size'. DNS changes need to be split up into
// multiple batches to work around the limit. Unfortunately I cannot find any
// documentation explaining how the RDATA size of a change set is computed and the best we
// can do is estimate it. For this reason, our internal limit is much lower than 32k.
const route53ChangeLimit = 20000
var (
route53AccessKeyFlag = cli.StringFlag{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment