From: Daniel Salzman Date: Thu, 28 Jul 2022 16:47:24 +0000 (+0200) Subject: mod-probe: increase rate limit to 100000 X-Git-Tag: v3.3.dev~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2aa47cea08532cba04725db9d75d129ff2ca51d1;p=thirdparty%2Fknot-dns.git mod-probe: increase rate limit to 100000 --- diff --git a/src/knot/modules/probe/probe.c b/src/knot/modules/probe/probe.c index 01848195a7..711dbe1bbb 100644 --- a/src/knot/modules/probe/probe.c +++ b/src/knot/modules/probe/probe.c @@ -38,7 +38,7 @@ const yp_item_t probe_conf[] = { { MOD_PATH, YP_TSTR, YP_VNONE }, { MOD_CHANNELS, YP_TINT, YP_VINT = { 1, UINT16_MAX, 1 } }, - { MOD_MAX_RATE, YP_TINT, YP_VINT = { 0, UINT32_MAX, 1000 } }, + { MOD_MAX_RATE, YP_TINT, YP_VINT = { 0, UINT32_MAX, 100000 } }, { NULL } }; diff --git a/src/knot/modules/probe/probe.rst b/src/knot/modules/probe/probe.rst index b9bbd34ab7..a7aa7404ea 100644 --- a/src/knot/modules/probe/probe.rst +++ b/src/knot/modules/probe/probe.rst @@ -86,4 +86,4 @@ Maximum number of queries/replies per second the probe is allowed to transfer. If the limit is exceeded, the over-limit traffic is ignored. Zero value means no limit. -*Default:* ``1000`` +*Default:* ``100000`` (one hundred thousand)