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

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


The following commit(s) were added to refs/heads/main by this push:
     new a842365c1b76 Replace deprecated constructor ULimit in Iggy
a842365c1b76 is described below

commit a842365c1b7671bd2e83cb6683d7c3d4840bc70b
Author: AurĂ©lien Pupier <[email protected]>
AuthorDate: Tue Jun 2 10:26:50 2026 +0200

    Replace deprecated constructor ULimit in Iggy
    
    Signed-off-by: AurĂ©lien Pupier <[email protected]>
---
 .../java/org/apache/camel/test/infra/iggy/services/IggyContainer.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/test-infra/camel-test-infra-iggy/src/main/java/org/apache/camel/test/infra/iggy/services/IggyContainer.java
 
b/test-infra/camel-test-infra-iggy/src/main/java/org/apache/camel/test/infra/iggy/services/IggyContainer.java
index 57cdc32d8abe..a8b43a6565ea 100644
--- 
a/test-infra/camel-test-infra-iggy/src/main/java/org/apache/camel/test/infra/iggy/services/IggyContainer.java
+++ 
b/test-infra/camel-test-infra-iggy/src/main/java/org/apache/camel/test/infra/iggy/services/IggyContainer.java
@@ -50,7 +50,7 @@ public class IggyContainer extends 
GenericContainer<IggyContainer> {
                     cmd.getHostConfig()
                             .withCapAdd(Capability.SYS_NICE)
                             .withSecurityOpts(List.of("seccomp:unconfined"))
-                            .withUlimits(List.of(new Ulimit("memlock", -1, 
-1)));
+                            .withUlimits(List.of(new Ulimit("memlock", -1L, 
-1L)));
                 });
 
                 if (!fixedPort) {

Reply via email to