From fe8f9a4b25871c62feff6c4f1c0e09d773242ad1 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Fri, 9 May 2008 13:36:08 +0000 Subject: * Restoring some initial inventory lookup polling delays in order to deal with situations seen on osgrid --- OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Framework/Communications') 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 int attempts = 5; while (attempts-- > 0) { - Thread.Sleep(500); + Thread.Sleep(2000); if (userProfile.HasInventory) { @@ -370,7 +370,7 @@ namespace OpenSim.Framework.Communications.Cache "[INVENTORY CACHE]: Poll number {0} for inventory items in folder {1} for user {2}", attempts, folderID, agentID); - Thread.Sleep(500); + Thread.Sleep(2000); if (userProfile.HasInventory) { -- cgit v1.1