1
0
mirror of https://github.com/OpenNebula/one.git synced 2024-12-22 13:33:52 +03:00

Feature #1739: Change host monitoring timeout to 5 minutes

This commit is contained in:
Carlos Martín 2013-02-14 15:26:30 +01:00
parent d749af7057
commit c5f28d8a03
2 changed files with 2 additions and 2 deletions

View File

@ -122,7 +122,7 @@ private:
friend void * im_action_loop(void *arg);
/**
* Time in seconds to expire a monitoring action (10 minutes)
* Time in seconds to expire a monitoring action (5 minutes)
*/
static const time_t monitor_expire;

View File

@ -21,7 +21,7 @@
#include <sys/stat.h>
const time_t InformationManager::monitor_expire = 600;
const time_t InformationManager::monitor_expire = 300;
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */