diff options
author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2005-08-18 20:06:59 +0000 |
---|---|---|
committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2005-08-18 20:06:59 +0000 |
commit | e90e90fb5fc32bd34c9e3efec4d89e9a9c4caa01 (patch) | |
tree | 15a2e5f17b32da049df41b6f77dde272e45a5e62 /src/zabbix_agent_win32/main.cpp | |
parent | b0b1e5513427852cf02098edf26c181371bc2c9b (diff) | |
download | zabbix-e90e90fb5fc32bd34c9e3efec4d89e9a9c4caa01.tar.gz zabbix-e90e90fb5fc32bd34c9e3efec4d89e9a9c4caa01.tar.xz zabbix-e90e90fb5fc32bd34c9e3efec4d89e9a9c4caa01.zip |
- fixed W32 agent crash in eventlog[]
git-svn-id: svn://svn.zabbix.com/trunk@1987 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'src/zabbix_agent_win32/main.cpp')
-rw-r--r-- | src/zabbix_agent_win32/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zabbix_agent_win32/main.cpp b/src/zabbix_agent_win32/main.cpp index 9e84b339..880d9f57 100644 --- a/src/zabbix_agent_win32/main.cpp +++ b/src/zabbix_agent_win32/main.cpp @@ -42,7 +42,7 @@ WORD confServerPort=10051; DWORD confServerAddr[MAX_SERVERS]; DWORD confServerCount=0; DWORD confTimeout=3000; // 3 seconds default timeout -DWORD confMaxProcTime=100; // 100 milliseconds is default acceptable collector sample processing time +DWORD confMaxProcTime=1000; // 1000 milliseconds is default acceptable collector sample processing time DWORD g_dwLogLevel = EVENTLOG_ERROR_TYPE | EVENTLOG_WARNING_TYPE | EVENTLOG_INFORMATION_TYPE; SUBAGENT *subagentList; // List of loaded subagents |