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-spring-boot.git
The following commit(s) were added to refs/heads/main by this push: new d9d57051dd5 CAMEL-20078: camel-jbang - Debug command d9d57051dd5 is described below commit d9d57051dd548155df563708235dcbd22f371a3c Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Sat Nov 4 10:53:10 2023 +0100 CAMEL-20078: camel-jbang - Debug command --- core/camel-spring-boot/src/main/docs/spring-boot.json | 2 +- .../camel/spring/boot/debug/CamelDebugConfigurationProperties.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/camel-spring-boot/src/main/docs/spring-boot.json b/core/camel-spring-boot/src/main/docs/spring-boot.json index a7ddce211b3..5410a9c3b5f 100644 --- a/core/camel-spring-boot/src/main/docs/spring-boot.json +++ b/core/camel-spring-boot/src/main/docs/spring-boot.json @@ -450,7 +450,7 @@ { "name": "camel.debug.breakpoints", "type": "java.lang.String", - "description": "Allows to pre-configure breakpoints (node ids) to use with debugger on startup. Multiple ids can be separated by comma. Use special value FIRST_ROUTES to add a breakpoint for the first node for every route, in other words this makes it easy to debug from the beginning of every route without knowing the exact node ids.", + "description": "Allows to pre-configure breakpoints (node ids) to use with debugger on startup. Multiple ids can be separated by comma. Use special value route:* to add a breakpoint for the first node for every route, in other words this makes it easy to debug from the beginning of every route without knowing the exact node ids.", "sourceType": "org.apache.camel.spring.boot.debug.CamelDebugConfigurationProperties" }, { diff --git a/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/debug/CamelDebugConfigurationProperties.java b/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/debug/CamelDebugConfigurationProperties.java index bf91896bbca..1d8be772bcf 100644 --- a/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/debug/CamelDebugConfigurationProperties.java +++ b/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/debug/CamelDebugConfigurationProperties.java @@ -42,7 +42,7 @@ public class CamelDebugConfigurationProperties { /** * Allows to pre-configure breakpoints (node ids) to use with debugger on startup. Multiple ids can be separated by - * comma. Use special value FIRST_ROUTES to add a breakpoint for the first node for every route, in other words this + * comma. Use special value route:* to add a breakpoint for the first node for every route, in other words this * makes it easy to debug from the beginning of every route without knowing the exact node ids. */ private String breakpoints;