* minor: Be a little more informative when a region fails to connect because it fails to implement the required OGS interface version
parent
6e07ef9cb9
commit
80f285a2aa
|
@ -409,8 +409,10 @@ namespace OpenSim.Grid.GridServer
|
||||||
{
|
{
|
||||||
return ErrorResponse(
|
return ErrorResponse(
|
||||||
String.Format(
|
String.Format(
|
||||||
"Your region is the wrong version to connect to this grid. Try changing to version {0} (interface version {1})",
|
"Your region service implements OGS1 interface version {0}"
|
||||||
m_opensimVersion, VersionInfo.MajorInterfaceVersion));
|
+ " 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);
|
existingSim = GetRegion(sim.regionHandle);
|
||||||
|
|
Loading…
Reference in New Issue