update finalize ykc offline fix baseline

This commit is contained in:
Guoqs
2026-03-21 11:15:33 +08:00
parent 4aafe089ff
commit b0cfcf40fa
4 changed files with 106 additions and 18 deletions

View File

@@ -165,7 +165,11 @@ public class PileChannelEntity {
if (!StringUtils.equals(currentChannelId, expectedChannelId)) {
return false;
}
return manager.remove(pileSn, currentCtx);
boolean removed = manager.remove(pileSn, currentCtx);
if (removed) {
channelIdToPileSnMap.remove(expectedChannelId);
}
return removed;
}
public static List<String> getPileSnListSnapshot() {