mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-15 10:30:40 +01:00
The warning message was emitted as an error message, which is misleading and may also break some automatted procedures.
16 lines
345 B
Bash
Executable File
16 lines
345 B
Bash
Executable File
#!/bin/bash
|
|
# add 2019-04-18 by Rainer Gerhards, released under ASL 2.0
|
|
. ${srcdir:=.}/diag.sh init
|
|
generate_conf
|
|
add_conf '
|
|
action(type="omfile" file="'$RSYSLOG_OUT_LOG'"
|
|
queue.type="linkedList" queue.size="500001")
|
|
'
|
|
|
|
startup
|
|
shutdown_when_empty
|
|
wait_shutdown
|
|
content_check --regex "warning.*queue.size=500001 is very large"
|
|
|
|
exit_test
|