icinga2/lib/checker/checkercomponent.ti
Michael Friedrich b906714254 Fix that MaxConcurrentChecks constant is overridden from 'checker' feature
Note: This drops the deprecated concurrent_checks setting from the checker feature
entirely and refactors the underlaying code handling.

Also affects ReloadTimeout which is new for 2.11.

fixes #7111
2019-04-16 15:04:57 +02:00

19 lines
309 B
Plaintext

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "base/configobject.hpp"
library checker;
namespace icinga
{
class CheckerComponent : ConfigObject
{
activation_priority 300;
/* Has no effect. Keep this here to avoid breaking config changes. */
[deprecated, config] int concurrent_checks;
};
}