Avoid repeated lag-generating continuous attempts to retrieve HG service Urls in UMM if the initial request fails, possibly due to the home URL not being present
Instead, the failure information is effectively added to the memory cache (so no persistence over simualtor sessions). A future improvement may be to invalidate negative cache results after some time has passed in case the failure was transient. Looks to resolve http://opensimulator.org/mantis/view.php?id=7382mb-throttle-test
parent
d9f7aa41c1
commit
09534f378e
|
@ -462,12 +462,14 @@ namespace OpenSim.Region.CoreModules.Framework.UserManagement
|
|||
{
|
||||
// m_log.DebugFormat("[USER MANAGEMENT MODULE]: Requested url type {0} for {1}", serverType, userID);
|
||||
|
||||
if (userdata.ServerURLs != null && userdata.ServerURLs.ContainsKey(serverType) && userdata.ServerURLs[serverType] != null)
|
||||
if (userdata.ServerURLs != null)
|
||||
{
|
||||
return userdata.ServerURLs[serverType].ToString();
|
||||
}
|
||||
object url;
|
||||
|
||||
if (!string.IsNullOrEmpty(userdata.HomeURL))
|
||||
if (userdata.ServerURLs.TryGetValue(serverType, out url))
|
||||
return url.ToString();
|
||||
}
|
||||
else if (!string.IsNullOrEmpty(userdata.HomeURL))
|
||||
{
|
||||
//m_log.DebugFormat(
|
||||
// "[USER MANAGEMENT MODULE]: Did not find url type {0} so requesting urls from '{1}' for {2}",
|
||||
|
@ -484,8 +486,10 @@ namespace OpenSim.Region.CoreModules.Framework.UserManagement
|
|||
userdata.ServerURLs = new Dictionary<string, object>();
|
||||
}
|
||||
|
||||
if (userdata.ServerURLs != null && userdata.ServerURLs.ContainsKey(serverType) && userdata.ServerURLs[serverType] != null)
|
||||
return userdata.ServerURLs[serverType].ToString();
|
||||
object url;
|
||||
|
||||
if (userdata.ServerURLs.TryGetValue(serverType, out url))
|
||||
return url.ToString();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue