Skip to content

Commit

Permalink
fix: queresource search failed 4660 (#4661)
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlieYan24 authored Jun 18, 2023
1 parent 66a74f7 commit 4e75276
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,9 @@ public List<EngineNode> getEngineNodeByServiceInstance(

@Override
public List<Node> getNodesByOwnerList(List<String> ownerlist) {
if (CollectionUtils.isEmpty(ownerlist)) {
return Lists.newArrayList();
}
List<PersistenceNode> nodeInstances = nodeManagerMapper.getNodeInstancesByOwnerList(ownerlist);
List<Node> persistenceNodeEntitys = new ArrayList<>();
if (!nodeInstances.isEmpty()) {
Expand Down

0 comments on commit 4e75276

Please sign in to comment.