This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch uc in repository https://gitbox.apache.org/repos/asf/camel.git
commit 1665d865702d0376918147b4e7f87de2de37d2c1 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Sat Jun 22 15:17:03 2024 +0200 CAMEL-20879: camel-core: remote vs local endpoints counters --- .../src/main/java/org/apache/camel/impl/console/InflightConsole.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/camel-console/src/main/java/org/apache/camel/impl/console/InflightConsole.java b/core/camel-console/src/main/java/org/apache/camel/impl/console/InflightConsole.java index ca46de51dc7..ad7f6f31b47 100644 --- a/core/camel-console/src/main/java/org/apache/camel/impl/console/InflightConsole.java +++ b/core/camel-console/src/main/java/org/apache/camel/impl/console/InflightConsole.java @@ -58,7 +58,8 @@ public class InflightConsole extends AbstractDevConsole { for (InflightRepository.InflightExchange ie : repo.browse(filter, max, false)) { String age = TimeUtils.printDuration(ie.getDuration(), true); sb.append(String.format("\n %s (from: %s at: %s/%s remote: %b age: %s)", - ie.getExchange().getExchangeId(), ie.getFromRouteId(), ie.getAtRouteId(), ie.getNodeId(), ie.isFromRemoteEndpoint(), age)); + ie.getExchange().getExchangeId(), ie.getFromRouteId(), ie.getAtRouteId(), ie.getNodeId(), + ie.isFromRemoteEndpoint(), age)); } }