Bug fix in neighbors: serverURI now always has a trailing '/'... neighbors were not getting notified.

This commit is contained in:
Diva Canto
2010-12-29 07:36:39 -08:00
parent 915c0b17b0
commit d42e0c39fc
3 changed files with 4 additions and 4 deletions

View File

@@ -87,7 +87,7 @@ namespace OpenSim.Services.Connectors
public bool DoHelloNeighbourCall(GridRegion region, RegionInfo thisRegion)
{
string uri = region.ServerURI + "/region/" + thisRegion.RegionID + "/";
string uri = region.ServerURI + "region/" + thisRegion.RegionID + "/";
//m_log.Debug(" >>> DoHelloNeighbourCall <<< " + uri);
WebRequest HelloNeighbourRequest = WebRequest.Create(uri);