Skip to content

Commit

Permalink
Merge pull request #2947 from atlanhq/bugfix/lineage-api-node-limit-e…
Browse files Browse the repository at this point in the history
…xceeding

fix: LIN-824: lineage api node limit exceeds max allowed node
  • Loading branch information
suraj5077 authored Apr 25, 2024
2 parents 2930528 + 8a16887 commit 0e89204
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ private List<AtlasEdge> getFilteredAtlasEdges(AtlasVertex outVertex, String proc
}

private boolean isEntityTraversalLimitReached(AtomicInteger entitiesTraversed) {
return entitiesTraversed.get() == getLineageMaxNodeAllowedCount();
return entitiesTraversed.get() >= getLineageMaxNodeAllowedCount();
}

@Override
Expand Down

0 comments on commit 0e89204

Please sign in to comment.