[jboss-svn-commits] JBL Code SVN: r8143 - labs/jbossesb/trunk/product/samples/quickstarts/helloworld_action/src/quickstart

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Fri Dec 8 10:43:38 EST 2006


Author: tfennelly
Date: 2006-12-08 10:43:37 -0500 (Fri, 08 Dec 2006)
New Revision: 8143

Modified:
   labs/jbossesb/trunk/product/samples/quickstarts/helloworld_action/src/quickstart/Launcher.java
Log:
Readded "new Thread(_gatewayController).start();" for the controller.  Removed it in error while making the startup of the EsbListenerController an atomic opp.

Modified: labs/jbossesb/trunk/product/samples/quickstarts/helloworld_action/src/quickstart/Launcher.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/helloworld_action/src/quickstart/Launcher.java	2006-12-08 15:24:55 UTC (rev 8142)
+++ labs/jbossesb/trunk/product/samples/quickstarts/helloworld_action/src/quickstart/Launcher.java	2006-12-08 15:43:37 UTC (rev 8143)
@@ -45,6 +45,8 @@
     			_logger.info("starting gateway listener with config file - " + 
     					gatewayConfigFile);
     			_gatewayController = new GatewayListenerController(gatewayConfigFile);
+    			new Thread(_gatewayController).start();
+    			Thread.sleep(2000);
     		}
     		
     		System.out.println("**Listener Ready**");




More information about the jboss-svn-commits mailing list