diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs b/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs index b98bfaf..52d0948 100644 --- a/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs | |||
@@ -200,6 +200,15 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends | |||
200 | if (UUID.TryParse((string)respData["friendID_" + i], out uuid)) tpdAway.Add(uuid); | 200 | if (UUID.TryParse((string)respData["friendID_" + i], out uuid)) tpdAway.Add(uuid); |
201 | } | 201 | } |
202 | } | 202 | } |
203 | catch (WebException e) | ||
204 | { | ||
205 | // Ignore connect failures, simulators come and go | ||
206 | // | ||
207 | if (!e.Message.Contains("ConnectFailure")) | ||
208 | { | ||
209 | m_log.Error("[OGS1 GRID SERVICES]: InformFriendsInOtherRegion XMLRPC failure: ", e); | ||
210 | } | ||
211 | } | ||
203 | catch (Exception e) | 212 | catch (Exception e) |
204 | { | 213 | { |
205 | m_log.Error("[OGS1 GRID SERVICES]: InformFriendsInOtherRegion XMLRPC failure: ", e); | 214 | m_log.Error("[OGS1 GRID SERVICES]: InformFriendsInOtherRegion XMLRPC failure: ", e); |