mirror of
https://gitee.com/BDWare/agent-backend
synced 2025-04-27 06:32:17 +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!!!");
|
||||
Set<ContractMeta> toRemove = new HashSet<>();
|
||||
for (ContractMeta meta : map.values()) {
|
||||
if (meta.getStatus() == null) {
|
||||
toRemove.add(meta);
|
||||
continue;
|
||||
}
|
||||
|
||||
if (meta.getStatus().equals(ContractStatusEnum.KILLED))
|
||||
toRemove.add(meta);
|
||||
if (meta.getName() == null || meta.getName().length() == 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user