Thanks, lulurun, for a patch that clears and refreshes and outdated user
profile cache (issue 1919).0.6.0-stable
parent
71cc458610
commit
cd89864f4c
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue