Thanks, lulurun, for a patch that clears and refreshes and outdated user

profile cache (issue 1919).
0.6.0-stable
Mike Mazur 2008-08-13 06:08:26 +00:00
parent 71cc458610
commit cd89864f4c
1 changed files with 6 additions and 1 deletions

View File

@ -2459,7 +2459,12 @@ namespace OpenSim.Region.Environment.Scenes
m_authenticateHandler.AddNewCircuit(agent.circuitcode, agent);
// rewrite session_id
CachedUserInfo userinfo = CommsManager.UserProfileCacheService.GetUserDetails(agent.AgentID);
userinfo.SessionID = agent.SessionID;
if (userinfo.SessionID != agent.SessionID) // means cache hit but outdated session ID
{
// Let's re-grab the whole user profile, because anything may have changed on the user server.
CommsManager.UserProfileCacheService.RemoveUser(agent.AgentID);
userinfo = CommsManager.UserProfileCacheService.GetUserDetails(agent.AgentID);
}
}
else
{