From e35e83312df57eeed0b2cbdecd0d608c64611be9 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Wed, 7 May 2008 15:53:27 +0000 Subject: * Increase number of poll attempts an inventory items request will make under CAPS --- OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim') diff --git a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs index 176e75e..e8cc7d2 100644 --- a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs +++ b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs @@ -363,7 +363,7 @@ namespace OpenSim.Framework.Communications.Cache if (!userProfile.HasInventory) { int attempts = 0; - while (attempts++ < 20) + while (attempts++ < 30) { m_log.DebugFormat( "[INVENTORY CACHE]: Poll number {0} for inventory items in folder {1} for user {2}", -- cgit v1.1