aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/InventoryServer/GridInventoryService.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Grid/InventoryServer/GridInventoryService.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Grid/InventoryServer/GridInventoryService.cs b/OpenSim/Grid/InventoryServer/GridInventoryService.cs
index 82ba7df..fe892ca 100644
--- a/OpenSim/Grid/InventoryServer/GridInventoryService.cs
+++ b/OpenSim/Grid/InventoryServer/GridInventoryService.cs
@@ -28,6 +28,8 @@
28using System; 28using System;
29using System.Collections.Generic; 29using System.Collections.Generic;
30using System.Reflection; 30using System.Reflection;
31using System.Threading;
32
31using libsecondlife; 33using libsecondlife;
32using log4net; 34using log4net;
33using OpenSim.Framework; 35using OpenSim.Framework;
@@ -108,7 +110,7 @@ namespace OpenSim.Grid.InventoryServer
108 public InventoryCollection GetUserInventory(Guid rawUserID) 110 public InventoryCollection GetUserInventory(Guid rawUserID)
109 { 111 {
110 // uncomment me to simulate an overloaded inventory server 112 // uncomment me to simulate an overloaded inventory server
111 //Thread.Sleep(25000); 113 //Thread.Sleep(20000);
112 114
113 LLUUID userID = new LLUUID(rawUserID); 115 LLUUID userID = new LLUUID(rawUserID);
114 116
@@ -165,6 +167,8 @@ namespace OpenSim.Grid.InventoryServer
165 /// <returns></returns> 167 /// <returns></returns>
166 public List<InventoryFolderBase> GetInventorySkeleton(Guid rawUserID) 168 public List<InventoryFolderBase> GetInventorySkeleton(Guid rawUserID)
167 { 169 {
170 //Thread.Sleep(10000);
171
168 LLUUID userID = new LLUUID(rawUserID); 172 LLUUID userID = new LLUUID(rawUserID);
169 return GetInventorySkeleton(userID); 173 return GetInventorySkeleton(userID);
170 } 174 }