-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34358 from karesti/update-to-14.0.11.Final
Updates Infinispan to 14.0.11.Final
- Loading branch information
Showing
3 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...t/runtime/src/main/java/io/quarkus/infinispan/client/runtime/graal/NettySubstitution.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package io.quarkus.infinispan.client.runtime.graal; | ||
|
||
import org.infinispan.client.hotrod.impl.transport.netty.NativeTransport; | ||
|
||
import com.oracle.svm.core.annotate.Substitute; | ||
import com.oracle.svm.core.annotate.TargetClass; | ||
|
||
final class NettySubstitution { | ||
} | ||
|
||
@TargetClass(value = NativeTransport.class) | ||
final class SubstituteNativeTransport { | ||
@Substitute | ||
private static boolean useNativeEpoll() { | ||
return false; | ||
} | ||
} |