mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 03:45:35 +08:00
Suppress exception dump when informing friends in another region about login
or logoff. Regions come and go and we can't throw just because someone took their region off the grid, or crashed.
This commit is contained in:
@@ -200,6 +200,15 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends
|
||||
if (UUID.TryParse((string)respData["friendID_" + i], out uuid)) tpdAway.Add(uuid);
|
||||
}
|
||||
}
|
||||
catch (WebException e)
|
||||
{
|
||||
// Ignore connect failures, simulators come and go
|
||||
//
|
||||
if (!e.Message.Contains("ConnectFailure"))
|
||||
{
|
||||
m_log.Error("[OGS1 GRID SERVICES]: InformFriendsInOtherRegion XMLRPC failure: ", e);
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
m_log.Error("[OGS1 GRID SERVICES]: InformFriendsInOtherRegion XMLRPC failure: ", e);
|
||||
|
||||
Reference in New Issue
Block a user