aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/GridServer/GridServerBase.cs
diff options
context:
space:
mode:
authorDiva Canto2009-08-21 11:01:23 -0700
committerDiva Canto2009-08-21 11:01:23 -0700
commitf9ee8be2bce8dd894f0db33f152c872695ac839d (patch)
treef3d09cb58ffe68ac95f9e4197435f4d837d00ded /OpenSim/Grid/GridServer/GridServerBase.cs
parentAdded a more sane InventoryServerMoveItemsHandler. Changed SynchronousRestObj... (diff)
parentFix Messaging server so -xmlfile actually works (diff)
downloadopensim-SC_OLD-f9ee8be2bce8dd894f0db33f152c872695ac839d.zip
opensim-SC_OLD-f9ee8be2bce8dd894f0db33f152c872695ac839d.tar.gz
opensim-SC_OLD-f9ee8be2bce8dd894f0db33f152c872695ac839d.tar.bz2
opensim-SC_OLD-f9ee8be2bce8dd894f0db33f152c872695ac839d.tar.xz
Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Grid/GridServer/GridServerBase.cs')
-rw-r--r--OpenSim/Grid/GridServer/GridServerBase.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Grid/GridServer/GridServerBase.cs b/OpenSim/Grid/GridServer/GridServerBase.cs
index e3ad52a..d63ac2e 100644
--- a/OpenSim/Grid/GridServer/GridServerBase.cs
+++ b/OpenSim/Grid/GridServer/GridServerBase.cs
@@ -49,6 +49,7 @@ namespace OpenSim.Grid.GridServer
49 protected GridConfig m_config; 49 protected GridConfig m_config;
50 public string m_consoleType = "local"; 50 public string m_consoleType = "local";
51 public IConfigSource m_configSource = null; 51 public IConfigSource m_configSource = null;
52 public string m_configFile = "GridServer_Config.xml";
52 53
53 public GridConfig Config 54 public GridConfig Config
54 { 55 {
@@ -91,7 +92,7 @@ namespace OpenSim.Grid.GridServer
91 break; 92 break;
92 } 93 }
93 MainConsole.Instance = m_console; 94 MainConsole.Instance = m_console;
94 m_config = new GridConfig("GRID SERVER", (Path.Combine(Util.configDir(), "GridServer_Config.xml"))); 95 m_config = new GridConfig("GRID SERVER", (Path.Combine(Util.configDir(), m_configFile)));
95 96
96 m_log.Info("[GRID]: Starting HTTP process"); 97 m_log.Info("[GRID]: Starting HTTP process");
97 m_httpServer = new BaseHttpServer(m_config.HttpPort); 98 m_httpServer = new BaseHttpServer(m_config.HttpPort);