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/59041f90 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/59041f90 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/59041f90 Branch: refs/heads/camel-2.15.x Commit: 59041f90a5e20f1b140e331cf98335f196f34d11 Parents: 5d3adc4 Author: Claus Ibsen <[email protected]> Authored: Tue Jul 14 09:39:47 2015 +0200 Committer: Claus Ibsen <[email protected]> Committed: Tue Jul 14 10:02:58 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/59041f90/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">
