This is an automated email from the ASF dual-hosted git repository.
ptupitsyn pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new 6d05f5a19ab IGNITE-25331 Fix Compute test flakiness due to random
feature flags (#5777)
6d05f5a19ab is described below
commit 6d05f5a19abc3d22de5a59dc354381a07d8e412f
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Wed May 7 18:26:42 2025 +0300
IGNITE-25331 Fix Compute test flakiness due to random feature flags (#5777)
---
.../src/test/java/org/apache/ignite/client/TestClientHandlerModule.java | 1 +
1 file changed, 1 insertion(+)
diff --git
a/modules/client/src/test/java/org/apache/ignite/client/TestClientHandlerModule.java
b/modules/client/src/test/java/org/apache/ignite/client/TestClientHandlerModule.java
index f617f35242a..e74c3e1103d 100644
---
a/modules/client/src/test/java/org/apache/ignite/client/TestClientHandlerModule.java
+++
b/modules/client/src/test/java/org/apache/ignite/client/TestClientHandlerModule.java
@@ -214,6 +214,7 @@ public class TestClientHandlerModule implements
IgniteComponent {
BitSet features = BitSet.valueOf(new
long[]{ThreadLocalRandom.current().nextLong()});
features.set(ProtocolBitmaskFeature.TX_DIRECT_MAPPING.featureId());
+ features.set(ProtocolBitmaskFeature.PLATFORM_COMPUTE_JOB.featureId());
bootstrap.childHandler(new ChannelInitializer<>() {
@Override