This is an automated email from the ASF dual-hosted git repository.
anton-vinogradov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/master by this push:
new a39e9cba492 IGNITE-28805 Fix flaky
ContinuousQueryMarshallerTest#testRemoteFilterFactoryServer (#13265)
a39e9cba492 is described below
commit a39e9cba492856182a06cdb072816ac0acfb11e2
Author: Aleksandr Chesnokov <[email protected]>
AuthorDate: Fri Jun 26 13:23:20 2026 +0300
IGNITE-28805 Fix flaky
ContinuousQueryMarshallerTest#testRemoteFilterFactoryServer (#13265)
Thank you for submitting the pull request to the Apache Ignite.
In order to streamline the review of the contribution
we ask you to ensure the following steps have been taken:
### The Contribution Checklist
- [ ] There is a single JIRA ticket related to the pull request.
- [ ] The web-link to the pull request is attached to the JIRA ticket.
- [ ] The JIRA ticket has the _Patch Available_ state.
- [ ] The pull request body describes changes that have been made.
The description explains _WHAT_ and _WHY_ was made instead of _HOW_.
- [ ] The pull request title is treated as the final commit message.
The following pattern must be used: `IGNITE-XXXX Change summary` where
`XXXX` - number of JIRA issue.
- [ ] A reviewer has been mentioned through the JIRA comments
(see [the Maintainers
list](https://cwiki.apache.org/confluence/display/IGNITE/How+to+Contribute#HowtoContribute-ReviewProcessandMaintainers))
- [ ] The pull request has been checked by the Teamcity Bot and
the `green visa` attached to the JIRA ticket (see tab `PR Check` at
[TC.Bot - Instance 1](https://tcbot2.sbt-ignite-dev.ru/prs.html) or
[TC.Bot - Instance 2](https://mtcga.gridgain.com/prs.html))
### Notes
- [How to
Contribute](https://cwiki.apache.org/confluence/display/IGNITE/How+to+Contribute)
- [Coding abbreviation
rules](https://cwiki.apache.org/confluence/display/IGNITE/Abbreviation+Rules)
- [Coding
Guidelines](https://cwiki.apache.org/confluence/display/IGNITE/Coding+Guidelines)
- [Apache Ignite Teamcity
Bot](https://cwiki.apache.org/confluence/display/IGNITE/Apache+Ignite+Teamcity+Bot)
If you need any help, please email [email protected] or ask anу
advice on http://asf.slack.com _#ignite_ channel.
---
.../cache/query/continuous/ContinuousQueryMarshallerTest.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/query/continuous/ContinuousQueryMarshallerTest.java
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/query/continuous/ContinuousQueryMarshallerTest.java
index dab32bb1514..9fb42a5fc8e 100644
---
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/query/continuous/ContinuousQueryMarshallerTest.java
+++
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/query/continuous/ContinuousQueryMarshallerTest.java
@@ -83,6 +83,8 @@ public class ContinuousQueryMarshallerTest extends
GridCommonAbstractTest {
final Ignite node2 = "client".equals(node2Name) ?
startClientGrid(node2Name) : startGrid(node2Name);
+ awaitPartitionMapExchange();
+
final ContinuousQuery<Integer, MarshallerCheckingEntry> qry = new
ContinuousQuery<>();
ScanQuery<Integer, MarshallerCheckingEntry> scanQry = new
ScanQuery<>(new IgniteBiPredicate<Integer, MarshallerCheckingEntry>() {