This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 9384a9d2bcf CAMEL-18425: camel-cli - Display more information for top
commands.
9384a9d2bcf is described below
commit 9384a9d2bcf58c8d37c86234fe8e72a6ff9c5683
Author: Claus Ibsen <[email protected]>
AuthorDate: Mon Aug 29 16:51:54 2022 +0200
CAMEL-18425: camel-cli - Display more information for top commands.
---
.../java/org/apache/camel/dsl/jbang/core/commands/process/CamelTop.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/process/CamelTop.java
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/process/CamelTop.java
index 93c56715adf..5b2f6fcb7f9 100644
---
a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/process/CamelTop.java
+++
b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/process/CamelTop.java
@@ -31,7 +31,7 @@ public class CamelTop extends CamelCommand {
@Override
public Integer call() throws Exception {
// default to top the integrations
- new CommandLine(new CamelRouteTop(getMain())).execute();
+ new CommandLine(new CamelContextTop(getMain())).execute();
return 0;
}
}