- Use the http-port that is now provided by the grid-server. If it isn't (because GridServer is too old), complain.
Not used yet, but will be necessary for crossing regions correcly.0.6.1-post-fixes
parent
33d7913341
commit
05467cb780
|
@ -301,6 +301,11 @@ namespace OpenSim.Region.Communications.OGS1
|
|||
{
|
||||
sri.HttpPort = Convert.ToUInt32(neighbourData["http_port"]);
|
||||
}
|
||||
else
|
||||
{
|
||||
m_log.Error("[OGS1 GRID SERVICES]: Couldn't find httpPort, using default 9000; please upgrade your grid-server to r7621 or later");
|
||||
sri.HttpPort = 9000; // that's the default and will probably be wrong
|
||||
}
|
||||
|
||||
sri.RegionID = new UUID((string) neighbourData["uuid"]);
|
||||
|
||||
|
|
Loading…
Reference in New Issue