mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 11:57:03 +08:00
Possible fix for: Remoting exceptions with adjacent non-running sims.
Bugs 449, 454, 408, 244, 197 implemented InformClientOfNeighbours as an asynchroneous process, handling timeouts without blocking the main thread. Improved logging of errors, removed catch all in try catch
This commit is contained in:
@@ -197,7 +197,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
{
|
||||
if (m_scene != null)
|
||||
{
|
||||
return m_scene.RegionInfo.SimUUID;
|
||||
return m_scene.RegionInfo.RegionID;
|
||||
}
|
||||
return LLUUID.Zero;
|
||||
}
|
||||
@@ -1173,7 +1173,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
{
|
||||
if (HasChanged)
|
||||
{
|
||||
datastore.StoreObject(this, m_scene.RegionInfo.SimUUID);
|
||||
datastore.StoreObject(this, m_scene.RegionInfo.RegionID);
|
||||
HasChanged = false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user