mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 11:33:28 +08:00
A few updates necessary for load balancer.
- handle GetUser request for nonexistent user gracefully - include throttle levels in ClientInfo - code to save/restore throttles in client stack - only update/send updates to active clients - make animation classes serializable
This commit is contained in:
@@ -561,8 +561,12 @@ namespace OpenSim
|
||||
{
|
||||
int port = regionInfo.InternalEndPoint.Port;
|
||||
|
||||
// set initial originRegionID to RegionID in RegionInfo. (it needs for loding prims)
|
||||
regionInfo.originRegionID = regionInfo.RegionID;
|
||||
// set initial RegionID to originRegionID in RegionInfo. (it needs for loding prims)
|
||||
// Commented this out because otherwise regions can't register with
|
||||
// the grid as there is already another region with the same UUID
|
||||
// at those coordinates. This is required for the load balancer to work.
|
||||
// --Mike, 2009.02.25
|
||||
//regionInfo.originRegionID = regionInfo.RegionID;
|
||||
|
||||
// set initial ServerURI
|
||||
regionInfo.ServerURI = "http://" + regionInfo.ExternalHostName + ":" + regionInfo.InternalEndPoint.Port;
|
||||
|
||||
Reference in New Issue
Block a user