This is an automated email from the ASF dual-hosted git repository.
ptupitsyn pushed a commit to branch ignite-25331
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/ignite-25331 by this push:
new e0322bfea5a IGNITE-25331 Fix Compute test flakiness due to random
flags in TestClientHandlerModule
e0322bfea5a is described below
commit e0322bfea5a0d230bf778ec83b37a610053402ce
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Wed May 7 17:26:11 2025 +0300
IGNITE-25331 Fix Compute test flakiness due to random flags in
TestClientHandlerModule
---
.../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