Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions core/camel-spring-boot/src/main/docs/spring-boot.json
Original file line number Diff line number Diff line change
Expand Up @@ -346,9 +346,9 @@
{
"name": "camel.errorregistry.time-to-live-seconds",
"type": "java.lang.Integer",
"description": "The time-to-live in seconds for error entries. Entries older than this are evicted.",
"description": "The time-to-live in seconds for error entries. Entries older than this are evicted. The default value is 0 (disabled).",
"sourceType": "org.apache.camel.spring.boot.errorregistry.CamelErrorRegistryConfigurationProperties",
"defaultValue": 3600
"defaultValue": 0
},
{
"name": "camel.health.async-camel-health-check",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@ public class CamelErrorRegistryConfigurationProperties {
private int maximumEntries = 100;

/**
* The time-to-live in seconds for error entries. Entries older than this are evicted.
* The time-to-live in seconds for error entries. Entries older than this are evicted. The default value is 0
* (disabled).
*/
@Metadata(defaultValue = "3600")
private int timeToLiveSeconds = 3600;
@Metadata(defaultValue = "0")
private int timeToLiveSeconds;

/**
* To limit the message body to a maximum size in the captured error data. Use 0 or negative value to use unlimited
Expand Down
Loading