This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/main by this push:
     new 76da3b1320 Align SubstituteIntrospectionSupport.CACHE type with that 
of the original class
76da3b1320 is described below

commit 76da3b1320e6f18a31d737d11f90a948e02c60ac
Author: James Netherton <jamesnether...@gmail.com>
AuthorDate: Wed Nov 6 07:27:16 2024 +0000

    Align SubstituteIntrospectionSupport.CACHE type with that of the original 
class
---
 .../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);
 }

Reply via email to