Decreased minimum check interval to 5 seconds.

This commit is contained in:
Gunnar Beutner 2013-01-28 09:48:20 +01:00
parent 3ffe8707ab
commit 366b1d1435
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ REGISTER_TYPE(Service, serviceAttributes);
const int Service::DefaultMaxCheckAttempts = 3;
const int Service::DefaultCheckInterval = 5 * 60;
const int Service::MinCheckInterval = 15;
const int Service::MinCheckInterval = 5;
const int Service::CheckIntervalDivisor = 5;
boost::signal<void (const Service::Ptr&, const CheckResultMessage&)> Service::OnCheckResultReceived;