* minor: Be a little more informative when a region fails to connect because it fails to implement the required OGS interface version

0.6.1-post-fixes
Justin Clarke Casey 2008-12-12 21:21:35 +00:00
parent 6e07ef9cb9
commit 80f285a2aa
1 changed files with 4 additions and 2 deletions

View File

@ -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);