Add a 1 minute delay on boot for the SysAdm health checks to start. This gives a bit more time for the network connectivity to settle down first.

This commit is contained in:
Ken Moore
2017-02-07 10:05:52 -05:00
parent 57e197669e
commit e67f77f447

View File

@@ -43,7 +43,7 @@ void EventWatcher::start(){
filechecktimer->start();
syschecktimer->start();
QTimer::singleShot(0, this, SLOT(CheckSystemState()) );
QTimer::singleShot(60000, this, SLOT(CheckSystemState()) ); //wait 1 minute for networking to settle down first
starting = false;
}