]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
journald: extend STDOUT_STREAMS_MAX to 64k
authorYu Watanabe <watanabe.yu+github@gmail.com>
Sun, 1 Dec 2024 05:46:40 +0000 (14:46 +0900)
committerMike Yuan <me@yhndnzj.com>
Tue, 10 Dec 2024 19:49:42 +0000 (20:49 +0100)
Closes #35390.

src/journal/journald-stream.c

index b019eda0d2fa93bf7fb3bd689b7442279d16c299..f039a33ad28b6bb8dc65e3c8607fb1473270955f 100644 (file)
@@ -40,7 +40,7 @@
 #include "unit-name.h"
 #include "user-util.h"
 
-#define STDOUT_STREAMS_MAX 4096
+#define STDOUT_STREAMS_MAX (64*1024)
 
 /* During the "setup" protocol phase of the stream logic let's define a different maximum line length than
  * during the actual operational phase. We want to allow users to specify very short line lengths after all,