mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
journald service: Increase default rate limit 1000 -> 10000.
Follows the upstream change of this default: https://github.com/systemd/systemd/pull/8660
This commit is contained in:
parent
523fe98821
commit
d16d34732c
2 changed files with 7 additions and 1 deletions
|
@ -267,6 +267,12 @@ environment.systemPackages = [
|
||||||
<title>Other Notable Changes</title>
|
<title>Other Notable Changes</title>
|
||||||
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<option>services.journald.rateLimitBurst</option> was updated from
|
||||||
|
<literal>1000</literal> to <literal>10000</literal> to follow the new
|
||||||
|
upstream systemd default.
|
||||||
|
</para>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
The <package>notmuch</package> package move its emacs-related binaries and
|
The <package>notmuch</package> package move its emacs-related binaries and
|
||||||
|
|
|
@ -597,7 +597,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
services.journald.rateLimitBurst = mkOption {
|
services.journald.rateLimitBurst = mkOption {
|
||||||
default = 1000;
|
default = 10000;
|
||||||
type = types.int;
|
type = types.int;
|
||||||
description = ''
|
description = ''
|
||||||
Configures the rate limiting burst limit (number of messages per
|
Configures the rate limiting burst limit (number of messages per
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue