mirror of
https://gitee.com/BDWare/agent-backend
synced 2025-04-27 14:42:16 +00:00
add join support
This commit is contained in:
parent
2758eb42e4
commit
ea71e8a358
@ -1307,6 +1307,11 @@ public class CMActions implements OnHashCallback {
|
|||||||
LOGGER.info("pruneKilledContract!!!");
|
LOGGER.info("pruneKilledContract!!!");
|
||||||
Set<ContractMeta> toRemove = new HashSet<>();
|
Set<ContractMeta> toRemove = new HashSet<>();
|
||||||
for (ContractMeta meta : map.values()) {
|
for (ContractMeta meta : map.values()) {
|
||||||
|
if (meta.getStatus() == null) {
|
||||||
|
toRemove.add(meta);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (meta.getStatus().equals(ContractStatusEnum.KILLED))
|
if (meta.getStatus().equals(ContractStatusEnum.KILLED))
|
||||||
toRemove.add(meta);
|
toRemove.add(meta);
|
||||||
if (meta.getName() == null || meta.getName().length() == 0)
|
if (meta.getName() == null || meta.getName().length() == 0)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user