Skip to content
Snippets Groups Projects
Commit 16701a2f authored by Daniel Salzman's avatar Daniel Salzman
Browse files

mod-rrl: change default log-period to 30 seconds

parent 0b3beb26
No related branches found
No related tags found
No related merge requests found
Pipeline #132751 passed
......@@ -37,7 +37,7 @@ const yp_item_t rrl_conf[] = {
{ MOD_SLIP, YP_TINT, YP_VINT = { 0, 100, 1 } },
{ MOD_TBL_SIZE, YP_TINT, YP_VINT = { 1, INT32_MAX, 524288 } },
{ MOD_WHITELIST, YP_TNET, YP_VNONE, YP_FMULTI },
{ MOD_LOG_PERIOD, YP_TINT, YP_VINT = { 0, INT32_MAX, 0 } },
{ MOD_LOG_PERIOD, YP_TINT, YP_VINT = { 0, INT32_MAX, 30000 } },
{ MOD_DRY_RUN, YP_TBOOL, YP_VNONE },
{ NULL }
};
......
......@@ -223,7 +223,7 @@ and sources with more blocked queries have greater probability to be chosen.
The approach is used by counting-based and time-based limiting separately,
so you can expect one message per `log-period` from each of them.
*Default:* ``0`` (disabled)
*Default:* ``30000`` (milliseconds)
.. _mod-rrl_dry-run:
......
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