http://jira.mfd.msk:8088/browse/CLS-1060 bugfix sessions execution.sessionId update

This commit is contained in:
ialbert 2026-07-07 18:49:02 +03:00
parent 43f2365ff0
commit 56bc00bcad
2 changed files with 2 additions and 2 deletions

View file

@ -244,7 +244,7 @@ public class InclusionToPoolAction extends AbstractSessionActionForOkErrorHandli
log.debug("sorted executions by type"); log.debug("sorted executions by type");
Map<Long, ExecutionCommon> m = new HashMap<>(); Map<Long, ExecutionCommon> m = new HashMap<>();
for (int i = 0; i < execs.size(); i++) { for (int i = 0; i < execs.size();) {
ExecutionCommon exec = execs.get(i); ExecutionCommon exec = execs.get(i);
ExecutionType execType = exec.type(); ExecutionType execType = exec.type();
log.debug("batch from {} position type {}", i, execType); log.debug("batch from {} position type {}", i, execType);

View file

@ -221,7 +221,7 @@ public class InclusionToPoolActionV2 extends AbstractSessionActionForOkErrorHand
log.debug("sorted executions by type"); log.debug("sorted executions by type");
Map<Long, ExecutionCommon> m = new HashMap<>(); Map<Long, ExecutionCommon> m = new HashMap<>();
for (int i = 0; i < execs.size(); i++) { for (int i = 0; i < execs.size();) {
ExecutionCommon exec = execs.get(i); ExecutionCommon exec = execs.get(i);
ExecutionType execType = exec.type(); ExecutionType execType = exec.type();
log.debug("batch from {} position type {}", i, execType); log.debug("batch from {} position type {}", i, execType);