HG on links request build the URI in http format with a / at end, this should not be needed but is coerent with current serverURI

melanie
UbitUmarov 2016-11-27 15:07:14 +00:00
parent 155f8dac1d
commit d3cd323f0c
1 changed files with 6 additions and 3 deletions

View File

@ -231,9 +231,10 @@ namespace OpenSim.Services.GridService
{
regionName = parts[2];
}
bool success = TryCreateLink(scopeID, xloc, yloc, regionName, port, host, ownerID, out regInfo, out reason);
if (success)
string serverURI = "http://"+ host +":"+ port.ToString() + "/";
// bool success = TryCreateLink(scopeID, xloc, yloc, regionName, port, host, ownerID, out regInfo, out reason);
if(TryCreateLink(scopeID, xloc, yloc, regionName, 0, null, serverURI, ownerID, out regInfo, out reason))
{
regInfo.RegionName = mapName;
return regInfo;
@ -257,6 +258,8 @@ namespace OpenSim.Services.GridService
}
serverURI = parts[0];
if (!serverURI.EndsWith("/"))
serverURI = serverURI + "/";
if (parts.Length >= 2)
{