diff options
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index f3e3d4f..2f3f198 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -561,8 +561,12 @@ namespace OpenSim | |||
561 | { | 561 | { |
562 | int port = regionInfo.InternalEndPoint.Port; | 562 | int port = regionInfo.InternalEndPoint.Port; |
563 | 563 | ||
564 | // set initial originRegionID to RegionID in RegionInfo. (it needs for loding prims) | 564 | // set initial RegionID to originRegionID in RegionInfo. (it needs for loding prims) |
565 | regionInfo.originRegionID = regionInfo.RegionID; | 565 | // Commented this out because otherwise regions can't register with |
566 | // the grid as there is already another region with the same UUID | ||
567 | // at those coordinates. This is required for the load balancer to work. | ||
568 | // --Mike, 2009.02.25 | ||
569 | //regionInfo.originRegionID = regionInfo.RegionID; | ||
566 | 570 | ||
567 | // set initial ServerURI | 571 | // set initial ServerURI |
568 | regionInfo.ServerURI = "http://" + regionInfo.ExternalHostName + ":" + regionInfo.InternalEndPoint.Port; | 572 | regionInfo.ServerURI = "http://" + regionInfo.ExternalHostName + ":" + regionInfo.InternalEndPoint.Port; |