Hi

I was working on CAMEL-1462 and I was wondering why the
JMXConnectorThread created in
DefaultInstrumentationAgent#createJmxConnector is not set as daemon?

eg in the code below there should be a: connector.setDaemon(true)


        // Start the connector server asynchronously (in a separate thread).
        Thread connectorThread = new Thread() {
            public void run() {
                try {
                    cs.start();
                } catch (IOException ioe) {
                    LOG.warn("Could not start JMXConnector thread.", ioe);
                }
            }
        };
        connectorThread.setName("Camel JMX Connector Thread [" + url + "]");
        connectorThread.start();
        LOG.info("JMX Connector thread started and listening at: " + url);



-- 
Claus Ibsen
Apache Camel Committer

Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/

Reply via email to