diff options
author | Justin Clark-Casey (justincc) | 2012-05-04 20:53:30 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-05-04 20:53:30 +0100 |
commit | 6096a1f30ed7857b1dbacf152dba4f0aa7e6e1e9 (patch) | |
tree | 2233b982653476dc8a3b26d86fc2643518577d1a | |
parent | refactor: Rename new DeleteFoldersEx/PurgeFoldersEx methods to DeleteFolders/... (diff) | |
download | opensim-SC_OLD-6096a1f30ed7857b1dbacf152dba4f0aa7e6e1e9.zip opensim-SC_OLD-6096a1f30ed7857b1dbacf152dba4f0aa7e6e1e9.tar.gz opensim-SC_OLD-6096a1f30ed7857b1dbacf152dba4f0aa7e6e1e9.tar.bz2 opensim-SC_OLD-6096a1f30ed7857b1dbacf152dba4f0aa7e6e1e9.tar.xz |
Change LongCallTime on WebUtil to 3000, to match the time where request handling is considered "slow".
This may be the wrong thing to do but stops lots of log spam in HG setups now that the monitoring is extended to other outgoing calls.
LongCallTime may need to be made configurable.
-rw-r--r-- | OpenSim/Framework/WebUtil.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/WebUtil.cs b/OpenSim/Framework/WebUtil.cs index 478d2a7..2aa4af5 100644 --- a/OpenSim/Framework/WebUtil.cs +++ b/OpenSim/Framework/WebUtil.cs | |||
@@ -68,7 +68,7 @@ namespace OpenSim.Framework | |||
68 | /// Number of milliseconds a call can take before it is considered | 68 | /// Number of milliseconds a call can take before it is considered |
69 | /// a "long" call for warning & debugging purposes | 69 | /// a "long" call for warning & debugging purposes |
70 | /// </summary> | 70 | /// </summary> |
71 | public const int LongCallTime = 500; | 71 | public const int LongCallTime = 3000; |
72 | 72 | ||
73 | /// <summary> | 73 | /// <summary> |
74 | /// The maximum length of any data logged because of a long request time. | 74 | /// The maximum length of any data logged because of a long request time. |