You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2015/09/25 17:06:32 UTC

camel git commit: CAMEL-9166: Polished. This fixes #620.

Repository: camel
Updated Branches:
  refs/heads/master 651b7dda0 -> 90f2cb406


CAMEL-9166: Polished. This fixes #620.


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

Branch: refs/heads/master
Commit: 90f2cb406e2f7d1e64c0b4d4194d16e8e2f66411
Parents: 651b7dd
Author: Claus Ibsen <da...@apache.org>
Authored: Fri Sep 25 17:08:09 2015 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Fri Sep 25 17:08:09 2015 +0200

----------------------------------------------------------------------
 .../src/main/java/org/apache/camel/scr/AbstractCamelRunner.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/90f2cb40/components/camel-scr/src/main/java/org/apache/camel/scr/AbstractCamelRunner.java
----------------------------------------------------------------------
diff --git a/components/camel-scr/src/main/java/org/apache/camel/scr/AbstractCamelRunner.java b/components/camel-scr/src/main/java/org/apache/camel/scr/AbstractCamelRunner.java
index 478afe7..78dc460 100644
--- a/components/camel-scr/src/main/java/org/apache/camel/scr/AbstractCamelRunner.java
+++ b/components/camel-scr/src/main/java/org/apache/camel/scr/AbstractCamelRunner.java
@@ -201,7 +201,7 @@ public abstract class AbstractCamelRunner implements Runnable {
             context.start();
             started = true;
         } catch (Exception e) {
-            // LOL so the best we can do is to try to start every 5th second and cross our fingers - yeah OSGi is lovely ;(
+            // we should have a better way - than just try every 5th second to try to start the bundle
             log.warn("Failed to start Camel context. Will try again when more Camel components have been registered.", e);
         }
     }