This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
The following commit(s) were added to refs/heads/master by this push:
new 6fc490a Regen
6fc490a is described below
commit 6fc490a43a22a9676be852998d5eb56a9c0aeaca
Author: Claus Ibsen <[email protected]>
AuthorDate: Thu Mar 18 09:10:21 2021 +0100
Regen
---
core/camel-spring-boot/src/main/docs/spring-boot.adoc | 2 +-
.../apache/camel/spring/boot/CamelConfigurationProperties.java | 8 +++-----
2 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/core/camel-spring-boot/src/main/docs/spring-boot.adoc
b/core/camel-spring-boot/src/main/docs/spring-boot.adoc
index 747f148..da68030 100644
--- a/core/camel-spring-boot/src/main/docs/spring-boot.adoc
+++ b/core/camel-spring-boot/src/main/docs/spring-boot.adoc
@@ -204,7 +204,7 @@ The component supports 169 options, which are listed below.
| *camel.springboot.shutdown-routes-in-reverse-order* | Sets whether routes
should be shutdown in reverse or the same order as they where started. | true |
Boolean
| *camel.springboot.shutdown-suppress-logging-on-timeout* | Whether Camel
should try to suppress logging during shutdown and timeout was triggered,
meaning forced shutdown is happening. And during forced shutdown we want to
avoid logging errors/warnings et all in the logs as a side-effect of the forced
timeout. Notice the suppress is a best effort as there may still be some logs
coming from 3rd party libraries and whatnot, which Camel cannot control. This
option is default false. | false [...]
| *camel.springboot.shutdown-timeout* | Timeout in seconds to graceful
shutdown Camel. | 300 | Integer
-| *camel.springboot.startup-recorder* | To use startup recorder for capturing
execution time during starting Camel. The recorder can be one of: false,
logging, java-flight-recorder The default is false. | false | String
+| *camel.springboot.startup-recorder* | To use startup recorder for capturing
execution time during starting Camel. The recorder can be one of: false (or
off), logging, java-flight-recorder (or jfr). | | String
| *camel.springboot.startup-recorder-dir* | Directory to store the recording.
By default the user home directory will be used. Use false to turn off saving
recording to disk. | | String
| *camel.springboot.startup-recorder-duration* | How long time to run the
startup recorder. Use 0 (default) to keep the recorder running until the JVM is
exited. Use -1 to stop the recorder right after Camel has been started (to only
focus on potential Camel startup performance bottlenecks) Use a positive value
to keep recording for N seconds. When the recorder is stopped then the
recording is auto saved to disk (note: save to disk can be disabled by setting
startupRecorderDir to false) [...]
| *camel.springboot.startup-recorder-max-depth* | To filter our sub steps at a
maximum depth. Use -1 for no maximum. Use 0 for no sub steps. Use 1 for max 1
sub step, and so forth. The default is -1. | -1 | Integer
diff --git
a/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java
b/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java
index 9486155..5dfdfbc 100644
---
a/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java
+++
b/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java
@@ -674,12 +674,10 @@ public class CamelConfigurationProperties extends
DefaultConfigurationProperties
private boolean exchangeFactoryStatisticsEnabled;
/**
- * To use startup recorder for capturing execution time during starting
Camel. The recorder can be one of: false,
- * logging, java-flight-recorder
- *
- * The default is false.
+ * To use startup recorder for capturing execution time during starting
Camel. The recorder can be one of: false (or
+ * off), logging, java-flight-recorder (or jfr).
*/
- private String startupRecorder = "false";
+ private String startupRecorder;
/**
* To filter our sub steps at a maximum depth.