This is an automated email from the ASF dual-hosted git repository.
zhfeng pushed a commit to branch 3.15.x
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/3.15.x by this push:
new c5916e8780 Align SubstituteIntrospectionSupport.CACHE type with that
of the original class (#6758)
c5916e8780 is described below
commit c5916e87801300deaf88a22b1c22864cd9142b5f
Author: JiriOndrusek <[email protected]>
AuthorDate: Thu Nov 7 17:50:46 2024 -0500
Align SubstituteIntrospectionSupport.CACHE type with that of the original
class (#6758)
Co-authored-by: James Netherton <[email protected]>
---
.../apache/camel/quarkus/core/graal/SubstituteIntrospectionSupport.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/graal/SubstituteIntrospectionSupport.java
b/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/graal/SubstituteIntrospectionSupport.java
index 0a906b61ae..847d8c1cc1 100644
---
a/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/graal/SubstituteIntrospectionSupport.java
+++
b/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/graal/SubstituteIntrospectionSupport.java
@@ -30,5 +30,5 @@ final class SubstituteIntrospectionSupport {
@Alias
@TargetElement(name = "CACHE")
@RecomputeFieldValue(kind = RecomputeFieldValue.Kind.FromAlias)
- private static Map<Class<?>, BeanIntrospection.ClassInfo> cache =
LRUCacheFactory.newLRUWeakCache(256);
+ private static Map<Class<?>, BeanIntrospection.ClassInfo> cache =
LRUCacheFactory.newLRUSoftCache(1000);
}