* Improve the previous fix by pushing the exception catching down into OGS1 grid services

This commit is contained in:
Justin Clarke Casey
2008-11-04 20:14:57 +00:00
parent f793f93817
commit 21c0df53a2
2 changed files with 9 additions and 18 deletions

View File

@@ -540,16 +540,7 @@ namespace OpenSim.Region.Environment.Modules.World.WorldMap
}
if (httpserver.Length == 0)
{
RegionInfo mreg = null;
try
{
mreg = m_scene.SceneGridService.RequestNeighbouringRegionInfo(regionhandle);
}
catch (Exception e)
{
m_log.WarnFormat("[WorldMap]: Requesting neighbour region info failed with exception {0}", e);
}
RegionInfo mreg = m_scene.SceneGridService.RequestNeighbouringRegionInfo(regionhandle);
if (mreg != null)
{