Putting this to exactly what it was yesterday around this time, so we can do the 100-ppl load test in WP. We need to carefully play with this code in order to understand all the problems.

This commit is contained in:
Diva Canto
2009-10-09 11:32:53 -07:00
parent 78f57283f4
commit 8231cb2231
2 changed files with 411 additions and 182 deletions

View File

@@ -247,16 +247,16 @@ namespace OpenSim.Region.ClientStack.LindenUDP
////return success;
lock (m_sync)
return Dictionary2.TryGetValue(key, out value);
//try
//{
//lock (m_sync)
// return Dictionary2.TryGetValue(key, out value);
//}
//catch { }
//value = null;
//return false;
try
{
return Dictionary2.TryGetValue(key, out value);
}
catch { }
value = null;
return false;
}