From 80f285a2aa78a05e8950fe09a7f90f0c34a85e43 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Fri, 12 Dec 2008 21:21:35 +0000 Subject: * minor: Be a little more informative when a region fails to connect because it fails to implement the required OGS interface version --- OpenSim/Grid/GridServer/GridManager.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'OpenSim') diff --git a/OpenSim/Grid/GridServer/GridManager.cs b/OpenSim/Grid/GridServer/GridManager.cs index 5454f03..08d5393 100644 --- a/OpenSim/Grid/GridServer/GridManager.cs +++ b/OpenSim/Grid/GridServer/GridManager.cs @@ -409,8 +409,10 @@ namespace OpenSim.Grid.GridServer { return ErrorResponse( String.Format( - "Your region is the wrong version to connect to this grid. Try changing to version {0} (interface version {1})", - m_opensimVersion, VersionInfo.MajorInterfaceVersion)); + "Your region service implements OGS1 interface version {0}" + + " but this grid requires that the region implement OGS1 interface version {1} to connect." + + " Try changing to OpenSimulator {2}", + majorInterfaceVersion, VersionInfo.MajorInterfaceVersion, m_opensimVersion)); } existingSim = GetRegion(sim.regionHandle); -- cgit v1.1