* Restoring some initial inventory lookup polling delays in order to deal with situations seen on osgrid

0.6.0-stable
Justin Clarke Casey 2008-05-09 13:36:08 +00:00
parent 313a635d1e
commit fe8f9a4b25
1 changed files with 2 additions and 2 deletions

View File

@ -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)
{