Author: rmorgan
Date: 2010-03-30 11:45:27 -0700 (Tue, 30 Mar 2010)
New Revision: 14441
URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=14441
Modified:
trunk/src/org/hyperic/hq/bizapp/agent/client/AgentClient.java
Log:
[HHQ-3843] Must call FileWatcherThread.doStart() to ensure the fiile watcher is running absent of any log/config track plugins.
Modified: trunk/src/org/hyperic/hq/bizapp/agent/client/AgentClient.java
===================================================================
--- trunk/src/org/hyperic/hq/bizapp/agent/client/AgentClient.java 2010-03-30 07:52:51 UTC (rev 14440)
+++ trunk/src/org/hyperic/hq/bizapp/agent/client/AgentClient.java 2010-03-30 18:45:27 UTC (rev 14441)
@@ -1148,6 +1148,7 @@
}
};
watcherThread.add(loggingWatcher);
+ watcherThread.doStart();
listenIp = cfg.getListenIp();
try {
|