aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-05-09 13:36:08 +0000
committerJustin Clarke Casey2008-05-09 13:36:08 +0000
commitfe8f9a4b25871c62feff6c4f1c0e09d773242ad1 (patch)
treeba1ceadea72458f8c3236967ddc3746cf9466af1 /OpenSim/Framework
parent* Fix opensim region server shutdown. (diff)
downloadopensim-SC_OLD-fe8f9a4b25871c62feff6c4f1c0e09d773242ad1.zip
opensim-SC_OLD-fe8f9a4b25871c62feff6c4f1c0e09d773242ad1.tar.gz
opensim-SC_OLD-fe8f9a4b25871c62feff6c4f1c0e09d773242ad1.tar.bz2
opensim-SC_OLD-fe8f9a4b25871c62feff6c4f1c0e09d773242ad1.tar.xz
* Restoring some initial inventory lookup polling delays in order to deal with situations seen on osgrid
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
index ea27346..3143437 100644
--- a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
+++ b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
@@ -274,7 +274,7 @@ namespace OpenSim.Framework.Communications.Cache
274 int attempts = 5; 274 int attempts = 5;
275 while (attempts-- > 0) 275 while (attempts-- > 0)
276 { 276 {
277 Thread.Sleep(500); 277 Thread.Sleep(2000);
278 278
279 if (userProfile.HasInventory) 279 if (userProfile.HasInventory)
280 { 280 {
@@ -370,7 +370,7 @@ namespace OpenSim.Framework.Communications.Cache
370 "[INVENTORY CACHE]: Poll number {0} for inventory items in folder {1} for user {2}", 370 "[INVENTORY CACHE]: Poll number {0} for inventory items in folder {1} for user {2}",
371 attempts, folderID, agentID); 371 attempts, folderID, agentID);
372 372
373 Thread.Sleep(500); 373 Thread.Sleep(2000);
374 374
375 if (userProfile.HasInventory) 375 if (userProfile.HasInventory)
376 { 376 {