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 464adaa880b CAMEL-20078: camel-jbang - Debug command 464adaa880b is described below commit 464adaa880bbb8686d1e0f61beeed0b2c2530021 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Sat Nov 4 15:41:18 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 1fbf21109e4..ec8b062dab6 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 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.", + "description": "Allows to pre-configure breakpoints (node ids) to use with debugger on startup. Multiple ids can be separated by comma. Use special value _all_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.", "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 d3d445a55b7..4402b335065 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 route:* to add a breakpoint for the first node for every route, in other words this + * comma. Use special value _all_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. */ private String breakpoints;