diff options
author | Diva Canto | 2010-12-29 07:36:39 -0800 |
---|---|---|
committer | Diva Canto | 2010-12-29 07:36:39 -0800 |
commit | d42e0c39fcaa03e101b8270e083690f2004c6776 (patch) | |
tree | 40bec1a8728148329a123492067996834ebb67f1 /OpenSim/Services/Connectors/Neighbour | |
parent | fixes a problem with ending slashes in GatekeeperService to verify session-ad... (diff) | |
download | opensim-SC_OLD-d42e0c39fcaa03e101b8270e083690f2004c6776.zip opensim-SC_OLD-d42e0c39fcaa03e101b8270e083690f2004c6776.tar.gz opensim-SC_OLD-d42e0c39fcaa03e101b8270e083690f2004c6776.tar.bz2 opensim-SC_OLD-d42e0c39fcaa03e101b8270e083690f2004c6776.tar.xz |
Bug fix in neighbors: serverURI now always has a trailing '/'... neighbors were not getting notified.
Diffstat (limited to 'OpenSim/Services/Connectors/Neighbour')
-rw-r--r-- | OpenSim/Services/Connectors/Neighbour/NeighbourServiceConnector.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/Connectors/Neighbour/NeighbourServiceConnector.cs b/OpenSim/Services/Connectors/Neighbour/NeighbourServiceConnector.cs index 9c57a40..93da10e 100644 --- a/OpenSim/Services/Connectors/Neighbour/NeighbourServiceConnector.cs +++ b/OpenSim/Services/Connectors/Neighbour/NeighbourServiceConnector.cs | |||
@@ -87,7 +87,7 @@ namespace OpenSim.Services.Connectors | |||
87 | 87 | ||
88 | public bool DoHelloNeighbourCall(GridRegion region, RegionInfo thisRegion) | 88 | public bool DoHelloNeighbourCall(GridRegion region, RegionInfo thisRegion) |
89 | { | 89 | { |
90 | string uri = region.ServerURI + "/region/" + thisRegion.RegionID + "/"; | 90 | string uri = region.ServerURI + "region/" + thisRegion.RegionID + "/"; |
91 | //m_log.Debug(" >>> DoHelloNeighbourCall <<< " + uri); | 91 | //m_log.Debug(" >>> DoHelloNeighbourCall <<< " + uri); |
92 | 92 | ||
93 | WebRequest HelloNeighbourRequest = WebRequest.Create(uri); | 93 | WebRequest HelloNeighbourRequest = WebRequest.Create(uri); |