davsclaus opened a new pull request, #23575: URL: https://github.com/apache/camel/pull/23575
## Summary - Change the ErrorRegistry TTL default from 1 hour to 0 (disabled), so entries are retained based only on the maximum entries limit (100) - Guard TTL eviction logic to skip when TTL is zero or negative - Update documentation and generated catalog metadata ## Rationale Most error registries and similar in-memory stores (e.g., Micrometer, Spring Boot Actuator trace stores) either don't use time-based eviction or keep entries much longer than 1 hour. Since the registry is already bounded by `maximumEntries=100`, time-based eviction is unnecessary by default and can cause users to miss recent errors that were evicted too quickly. ## Test plan - [x] Existing `ManagedErrorRegistryTest` passes - [x] Core modules build successfully - [x] Catalog metadata regenerated _Claude Code on behalf of Claus Ibsen_ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
