diff options
author | Brian McBee | 2007-08-08 04:59:03 +0000 |
---|---|---|
committer | Brian McBee | 2007-08-08 04:59:03 +0000 |
commit | 185115ee5172821c134dae88d418935e7da31cab (patch) | |
tree | 0f9d363bcc03e61b2862bdae24b6a070cebdd579 /OpenSim/Region/Communications/OGS1 | |
parent | Grid/GridServer/GridManager.cs (diff) | |
download | opensim-SC_OLD-185115ee5172821c134dae88d418935e7da31cab.zip opensim-SC_OLD-185115ee5172821c134dae88d418935e7da31cab.tar.gz opensim-SC_OLD-185115ee5172821c134dae88d418935e7da31cab.tar.bz2 opensim-SC_OLD-185115ee5172821c134dae88d418935e7da31cab.tar.xz |
OGS1GridServices.cs
Sims should crash less in gridmode just because their neighboring regions aren't available.
Diffstat (limited to 'OpenSim/Region/Communications/OGS1')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs index eb22b90..32b0cfc 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | |||
@@ -372,6 +372,10 @@ namespace OpenSim.Region.Communications.OGS1 | |||
372 | MainLog.Instance.Error("Remoting Error: Unable to connect to remote region.\n" + e.ToString()); | 372 | MainLog.Instance.Error("Remoting Error: Unable to connect to remote region.\n" + e.ToString()); |
373 | return false; | 373 | return false; |
374 | } | 374 | } |
375 | catch | ||
376 | { | ||
377 | return false; | ||
378 | } | ||
375 | } | 379 | } |
376 | 380 | ||
377 | /// <summary> | 381 | /// <summary> |
@@ -418,6 +422,10 @@ namespace OpenSim.Region.Communications.OGS1 | |||
418 | MainLog.Instance.Error("Remoting Error: Unable to connect to remote region.\n" + e.ToString()); | 422 | MainLog.Instance.Error("Remoting Error: Unable to connect to remote region.\n" + e.ToString()); |
419 | return false; | 423 | return false; |
420 | } | 424 | } |
425 | catch | ||
426 | { | ||
427 | return false; | ||
428 | } | ||
421 | } | 429 | } |
422 | 430 | ||
423 | public bool AcknowledgeAgentCrossed(ulong regionHandle, LLUUID agentID) | 431 | public bool AcknowledgeAgentCrossed(ulong regionHandle, LLUUID agentID) |