This is an automated email from the ASF dual-hosted git repository.
dspavlov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite-teamcity-bot.git
The following commit(s) were added to refs/heads/master by this push:
new 5589d7fa IGNITE-28729 Fix fat build start time chunk loading (#233)
5589d7fa is described below
commit 5589d7fa14d5bb3ef9ef87a7553fcb67f422e4ef
Author: ignitetcbot <[email protected]>
AuthorDate: Wed May 27 21:12:50 2026 +0300
IGNITE-28729 Fix fat build start time chunk loading (#233)
Codex co-authored-by: Dmitriy Pavlov <[email protected]>
---
.../src/main/java/org/apache/ignite/tcignited/build/FatBuildDao.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/tcbot-teamcity-ignited/src/main/java/org/apache/ignite/tcignited/build/FatBuildDao.java
b/tcbot-teamcity-ignited/src/main/java/org/apache/ignite/tcignited/build/FatBuildDao.java
index 8a36f0a4..e70b32ff 100644
---
a/tcbot-teamcity-ignited/src/main/java/org/apache/ignite/tcignited/build/FatBuildDao.java
+++
b/tcbot-teamcity-ignited/src/main/java/org/apache/ignite/tcignited/build/FatBuildDao.java
@@ -264,7 +264,8 @@ public class FatBuildDao {
Iterables.partition(keys, MAX_FAT_BUILD_CHUNK).forEach(
chunk -> {
- Map<Long, EntryProcessorResult<Long>> map =
cacheBin.invokeAll(keys, new GetStartTimeProc());
+ Map<Long, EntryProcessorResult<Long>> map =
cacheBin.invokeAll(new HashSet<>(chunk),
+ new GetStartTimeProc());
map.forEach((k, r) -> {
Long ts = r.get();
if (ts != null)