From 550018f02dbe9d725ff9cdd69f3cf17fac727220 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Tue, 13 May 2008 13:36:21 +0000 Subject: * As part of the region registration process, the grid service now requests the status of the region using the region http uri just passed in * If the status cannot be retrieved, then the region startup will terminate. * The aim of this is for earlier detection of situations where the region can send messages out but cannot accept incoming requests (often due to firewall issues) * This is currently an extremely simplistic check which completely trusts whatever http uri is given by the region * This contact may be problematic, though since the user service needs to be able to contact the region http uri, it doesn't seem unreasonable for the grid to have to be able to do so too at this stage * This change will require a prebuild --- OpenSim/Grid/GridServer/GridServerBase.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'OpenSim/Grid/GridServer/GridServerBase.cs') diff --git a/OpenSim/Grid/GridServer/GridServerBase.cs b/OpenSim/Grid/GridServer/GridServerBase.cs index 8adab1a..aeaead5 100644 --- a/OpenSim/Grid/GridServer/GridServerBase.cs +++ b/OpenSim/Grid/GridServer/GridServerBase.cs @@ -91,11 +91,11 @@ namespace OpenSim.Grid.GridServer m_httpServer.Start(); - m_log.Info("[GRID]: Starting sim status checker"); - - Timer simCheckTimer = new Timer(3600000 * 3); // 3 Hours between updates. - simCheckTimer.Elapsed += new ElapsedEventHandler(CheckSims); - simCheckTimer.Enabled = true; +// m_log.Info("[GRID]: Starting sim status checker"); +// +// Timer simCheckTimer = new Timer(3600000 * 3); // 3 Hours between updates. +// simCheckTimer.Elapsed += new ElapsedEventHandler(CheckSims); +// simCheckTimer.Enabled = true; } protected void AddHttpHandlers() -- cgit v1.1