changeset 2290:f0e974d6bf67

Fix thread harvester receiver package name Thread monitoring was broken in 9886546c9092 due to ThreadHarvester being moved into a new "internal" subpackage, but the HarvesterCommand.RECEIVER constant was not updated to reflect this change. Reviewed-by: neugens Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2016-May/018748.html
author Andrew Azores <aazores@redhat.com>
date Thu, 05 May 2016 11:12:40 -0400
parents fa7923c23a0e
children 9bfc2723bbfc
files thread/collector/src/main/java/com/redhat/thermostat/thread/collector/HarvesterCommand.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/thread/collector/src/main/java/com/redhat/thermostat/thread/collector/HarvesterCommand.java	Thu May 05 10:37:43 2016 -0400
+++ b/thread/collector/src/main/java/com/redhat/thermostat/thread/collector/HarvesterCommand.java	Thu May 05 11:12:40 2016 -0400
@@ -45,7 +45,7 @@
     VM_ID,
     VM_PID;
 
-    public static final String RECEIVER = "com.redhat.thermostat.thread.harvester.ThreadHarvester";
+    public static final String RECEIVER = "com.redhat.thermostat.thread.harvester.internal.ThreadHarvester";
 
 }