Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
owenlxu committed Jul 11, 2024
2 parents c03366e + 77958fe commit 39d14e1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ class CommitEdgeCenterNodeRenameSupport(
return if (isEdgeRequest()) {
where(TNode::clusterNames).ne(SecurityUtils.getClusterName())
} else {
Criteria().orOperator(
where(TNode::clusterNames).exists(false),
where(TNode::clusterNames).ne(listOf(clusterProperties.self.name))
Criteria().andOperator(
where(TNode::clusterNames).ne(listOf(clusterProperties.self.name)),
where(TNode::clusterNames).ne(null)
)
}
}
Expand Down

0 comments on commit 39d14e1

Please sign in to comment.