diff options
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs index 0c13120..59250fd 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | |||
@@ -301,6 +301,11 @@ namespace OpenSim.Region.Communications.OGS1 | |||
301 | { | 301 | { |
302 | sri.HttpPort = Convert.ToUInt32(neighbourData["http_port"]); | 302 | sri.HttpPort = Convert.ToUInt32(neighbourData["http_port"]); |
303 | } | 303 | } |
304 | else | ||
305 | { | ||
306 | m_log.Error("[OGS1 GRID SERVICES]: Couldn't find httpPort, using default 9000; please upgrade your grid-server to r7621 or later"); | ||
307 | sri.HttpPort = 9000; // that's the default and will probably be wrong | ||
308 | } | ||
304 | 309 | ||
305 | sri.RegionID = new UUID((string) neighbourData["uuid"]); | 310 | sri.RegionID = new UUID((string) neighbourData["uuid"]); |
306 | 311 | ||