aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/GridServer/GridServerBase.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-11-11 17:02:46 +0000
committerJustin Clarke Casey2008-11-11 17:02:46 +0000
commit97816f8c901bf56e3b29bdbd5f8e320de352f45f (patch)
tree30fdd6962a11fda115da1b2cb8340a4d64b763b1 /OpenSim/Grid/GridServer/GridServerBase.cs
parentMantis#2604. Thank you kindly, Diva for a patch that: (diff)
downloadopensim-SC_OLD-97816f8c901bf56e3b29bdbd5f8e320de352f45f.zip
opensim-SC_OLD-97816f8c901bf56e3b29bdbd5f8e320de352f45f.tar.gz
opensim-SC_OLD-97816f8c901bf56e3b29bdbd5f8e320de352f45f.tar.bz2
opensim-SC_OLD-97816f8c901bf56e3b29bdbd5f8e320de352f45f.tar.xz
* Implement basic region filtering as described in https://lists.berlios.de/pipermail/opensim-dev/2008-November/003468.html
* This is done by sending a 'major interface version' number on sim registration. Developers must increment this every time they make a change that would make the previous OpenSim revision failure incompatible with the new one (non-fatal incompatibilities are fine). * This number resides in OpenSim.Framework.Servers.VersionInfo.MajorInterfaceVersion * This allows the grid service to stop older, incompatible regions from connecting
Diffstat (limited to 'OpenSim/Grid/GridServer/GridServerBase.cs')
-rw-r--r--OpenSim/Grid/GridServer/GridServerBase.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Grid/GridServer/GridServerBase.cs b/OpenSim/Grid/GridServer/GridServerBase.cs
index 36ea238..9652765 100644
--- a/OpenSim/Grid/GridServer/GridServerBase.cs
+++ b/OpenSim/Grid/GridServer/GridServerBase.cs
@@ -153,7 +153,7 @@ namespace OpenSim.Grid.GridServer
153 protected virtual void SetupGridManager() 153 protected virtual void SetupGridManager()
154 { 154 {
155 m_log.Info("[DATA]: Connecting to Storage Server"); 155 m_log.Info("[DATA]: Connecting to Storage Server");
156 m_gridManager = new GridManager(); 156 m_gridManager = new GridManager(m_version);
157 m_gridManager.AddPlugin(m_config.DatabaseProvider, m_config.DatabaseConnect); 157 m_gridManager.AddPlugin(m_config.DatabaseProvider, m_config.DatabaseConnect);
158 m_gridManager.Config = m_config; 158 m_gridManager.Config = m_config;
159 } 159 }