You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2016/04/20 17:05:09 UTC

camel git commit: CAMEL-9891 : ApplicationReadyEvent not dispatched if camel.springboot.main-run-controller = true

Repository: camel
Updated Branches:
  refs/heads/master 5356ab0d8 -> 11a8f695f


CAMEL-9891 : ApplicationReadyEvent not dispatched if camel.springboot.main-run-controller = true


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/11a8f695
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/11a8f695
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/11a8f695

Branch: refs/heads/master
Commit: 11a8f695ff6c93194a289bdd5ca2c812565544d5
Parents: 5356ab0
Author: lburgazzoli <lb...@gmail.com>
Authored: Wed Apr 20 17:03:26 2016 +0200
Committer: lburgazzoli <lb...@gmail.com>
Committed: Wed Apr 20 17:03:26 2016 +0200

----------------------------------------------------------------------
 .../org/apache/camel/spring/boot/CamelMainRunController.java     | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/11a8f695/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelMainRunController.java
----------------------------------------------------------------------
diff --git a/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelMainRunController.java b/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelMainRunController.java
index a09ade4..bf1b810 100644
--- a/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelMainRunController.java
+++ b/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelMainRunController.java
@@ -33,15 +33,13 @@ public class CamelMainRunController {
     }
 
     public void start() {
-        daemon.run();
+        daemon.start();
     }
 
     private final class DaemonTask implements Runnable {
-
         @Override
         public void run() {
             controller.run();
         }
     }
-
 }