This is an automated email from the ASF dual-hosted git repository.
fmariani pushed a commit to branch camel-spring-boot-3.20.x
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
The following commit(s) were added to refs/heads/camel-spring-boot-3.20.x by
this push:
new 5520bdb0bda Fix Infinispan STATS test
5520bdb0bda is described below
commit 5520bdb0bdab9532b19420401c7715134b2649ac
Author: Marco Carletti <[email protected]>
AuthorDate: Tue Feb 7 17:51:26 2023 +0100
Fix Infinispan STATS test
---
.../camel/component/infinispan/remote/InfinispanRemoteProducerIT.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/components-starter/camel-infinispan-starter/src/test/java/org/apache/camel/component/infinispan/remote/InfinispanRemoteProducerIT.java
b/components-starter/camel-infinispan-starter/src/test/java/org/apache/camel/component/infinispan/remote/InfinispanRemoteProducerIT.java
index 792e04c41e5..79b35002e47 100644
---
a/components-starter/camel-infinispan-starter/src/test/java/org/apache/camel/component/infinispan/remote/InfinispanRemoteProducerIT.java
+++
b/components-starter/camel-infinispan-starter/src/test/java/org/apache/camel/component/infinispan/remote/InfinispanRemoteProducerIT.java
@@ -78,7 +78,7 @@ public class InfinispanRemoteProducerIT extends
InfinispanRemoteTestSupport impl
.to("direct:start")
.withHeader(InfinispanConstants.OPERATION, InfinispanOperation.STATS)
.request(ServerStatistics.class)
-
.getIntStatistic(ServerStatistics.CURRENT_NR_OF_ENTRIES));
+
.getIntStatistic(ServerStatistics.APPROXIMATE_ENTRIES));
}
// *****************************