mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-19 12:40:42 +01:00
by default, we now use 10s timeout for terminating inputs. On some slow machines (CI under heavy load) the system default is not sufficient, what can lead to memory leaks and thus valgrind failures.
22 lines
966 B
Plaintext
22 lines
966 B
Plaintext
# This is a config include file. It sets up rsyslog so that the
|
|
# diag system can successfully be used. Also, it generates a file
|
|
# "rsyslogd.started" after rsyslogd is initialized. This config file
|
|
# should be included in all tests that intend to use common code for
|
|
# controlling the daemon.
|
|
# NOTE: we assume that rsyslogd's current working directory is
|
|
# ./tests (or the distcheck equivalent), in particlular that this
|
|
# config file resides in the testsuites subdirectory.
|
|
# rgerhards, 2009-05-27
|
|
$ModLoad ../plugins/imdiag/.libs/imdiag
|
|
$IMDiagServerRun 13500
|
|
|
|
global(inputs.timeout.shutdown="10000")
|
|
|
|
$template startupfile,"rsyslogd.started" # trick to use relative path names!
|
|
:syslogtag, contains, "rsyslogd" ?startupfile
|
|
|
|
# I have disabled the directive below, so that we see errors in testcase
|
|
# creation. I am not sure why it was present in the first place, so for
|
|
# now I just leave it commented out -- rgerhards, 2011-03-30
|
|
#$ErrorMessagesToStderr off
|