* Reduced sleep durations in a number of files.

This commit is contained in:
Adam Frisby
2008-05-08 04:47:38 +00:00
parent 80cbd468ea
commit ba8ff761c0
5 changed files with 6 additions and 18 deletions

View File

@@ -60,9 +60,6 @@ namespace OpenSim.Grid.InventoryServer
LLUUID userID = new LLUUID(rawUserID);
m_log.InfoFormat("[GRID AGENT INVENTORY]: Processing request for inventory of {0}", userID);
// uncomment me to simulate an overloaded inventory server
//Thread.Sleep(18000);
InventoryCollection invCollection = new InventoryCollection();
@@ -114,9 +111,7 @@ namespace OpenSim.Grid.InventoryServer
/// <param name="rawUserID"></param>
/// <returns></returns>
public List<InventoryFolderBase> GetInventorySkeleton(Guid rawUserID)
{
//Thread.Sleep(10000);
{
LLUUID userID = new LLUUID(rawUserID);
return GetInventorySkeleton(userID);
}