--- projects/cms/source/server/uk/org/iscream/cms/server/client/ClientMain.java 2001/03/22 17:31:43 1.17 +++ projects/cms/source/server/uk/org/iscream/cms/server/client/ClientMain.java 2001/03/22 18:18:14 1.18 @@ -11,7 +11,7 @@ import uk.org.iscream.util.*; * A startup component for the Local Clients. * * @author $Author: tdb $ - * @version $Id: ClientMain.java,v 1.17 2001/03/22 17:31:43 tdb Exp $ + * @version $Id: ClientMain.java,v 1.18 2001/03/22 18:18:14 tdb Exp $ */ public class ClientMain implements Component { @@ -20,7 +20,7 @@ public class ClientMain implements Component { /** * The current CVS revision of this class */ - public static final String REVISION = "$Revision: 1.17 $"; + public static final String REVISION = "$Revision: 1.18 $"; /** * The friendly name for this component, used by @@ -79,8 +79,8 @@ public class ClientMain implements Component { try { // try to get the interval, if this fails, we won't start up the monitor int queueMonitorInterval = Integer.parseInt(cp.getProperty(NAME, "Queue.MonitorInterval")); - _alerterQueue.startMonitor(queueMonitorInterval*1000, _monitorQueue, NAME + " DataQueue"); - _monitorQueue.startMonitor(queueMonitorInterval*1000, _monitorQueue, NAME + " HeartbeatQueue"); + _alerterQueue.startMonitor(queueMonitorInterval*1000, _monitorQueue, NAME + " Alerter"); + _monitorQueue.startMonitor(queueMonitorInterval*1000, _monitorQueue, NAME + " Monitor"); } catch (PropertyNotFoundException e) { _logger.write(toString(), Logger.WARNING, "failed to find queue monitor config, disabling. " + e); }