CAMEL-8963: Fixed some completers in the karaf commands for routes.
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/4bbc7f31 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/4bbc7f31 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/4bbc7f31 Branch: refs/heads/master Commit: 4bbc7f311cb38073168c8b367ee7ffff9e4f5361 Parents: ea8ee02 Author: Claus Ibsen <[email protected]> Authored: Tue Jul 14 09:39:47 2015 +0200 Committer: Claus Ibsen <[email protected]> Committed: Tue Jul 14 09:39:47 2015 +0200 ---------------------------------------------------------------------- .../main/resources/OSGI-INF/blueprint/camel-commands.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/4bbc7f31/platforms/karaf/commands/src/main/resources/OSGI-INF/blueprint/camel-commands.xml ---------------------------------------------------------------------- diff --git a/platforms/karaf/commands/src/main/resources/OSGI-INF/blueprint/camel-commands.xml b/platforms/karaf/commands/src/main/resources/OSGI-INF/blueprint/camel-commands.xml index 7649eb7..bb827da 100644 --- a/platforms/karaf/commands/src/main/resources/OSGI-INF/blueprint/camel-commands.xml +++ b/platforms/karaf/commands/src/main/resources/OSGI-INF/blueprint/camel-commands.xml @@ -104,7 +104,7 @@ </action> <completers> <ref component-id="routeCompleter"/> - <null/> + <ref component-id="camelContextCompleter"/> </completers> </command> <command name="camel/route-reset-stats"> @@ -131,7 +131,7 @@ </action> <completers> <ref component-id="routeCompleter"/> - <null/> + <ref component-id="camelContextCompleter"/> </completers> </command> <command name="camel/route-stop"> @@ -140,7 +140,7 @@ </action> <completers> <ref component-id="routeCompleter"/> - <null/> + <ref component-id="camelContextCompleter"/> </completers> </command> <command name="camel/route-resume"> @@ -149,7 +149,7 @@ </action> <completers> <ref component-id="routeCompleter"/> - <null/> + <ref component-id="camelContextCompleter"/> </completers> </command> <command name="camel/route-suspend"> @@ -158,7 +158,7 @@ </action> <completers> <ref component-id="routeCompleter"/> - <null/> + <ref component-id="camelContextCompleter"/> </completers> </command> <command name="camel/eip-explain">
