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/Region/CoreModules | |
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/Region/CoreModules')
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RegionCache.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RegionCache.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RegionCache.cs index 6c89ac8..9172536 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RegionCache.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RegionCache.cs | |||
@@ -66,7 +66,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Grid | |||
66 | return; | 66 | return; |
67 | 67 | ||
68 | m_log.DebugFormat("[REGION CACHE]: (on region {0}) Region {1} is up @ {2}-{3}", | 68 | m_log.DebugFormat("[REGION CACHE]: (on region {0}) Region {1} is up @ {2}-{3}", |
69 | m_scene.RegionInfo.RegionName, otherRegion.RegionName, otherRegion.RegionLocX, otherRegion.RegionLocY); | 69 | m_scene.RegionInfo.RegionName, otherRegion.RegionName, otherRegion.RegionLocX / Constants.RegionSize, otherRegion.RegionLocY / Constants.RegionSize); |
70 | 70 | ||
71 | m_neighbours[otherRegion.RegionHandle] = otherRegion; | 71 | m_neighbours[otherRegion.RegionHandle] = otherRegion; |
72 | } | 72 | } |