Skip to content

Commit

Permalink
Merge pull request #3630 from atlanhq/DG-1746-v2
Browse files Browse the repository at this point in the history
DG-1746 Fix edge not getting removed issue
  • Loading branch information
nikhilbonte21 authored Oct 11, 2024
2 parents 0ae5bb2 + b09a771 commit e0a1e9f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ public boolean deleteEdgeReference(AtlasEdge edge, TypeCategory typeCategory, bo
}
}

return !softDelete || forceDelete;
return !softDelete || forceDelete || isCustomRelationship(edge);
}

public void addTagPropagation(AtlasEdge edge, PropagateTags propagateTags) throws AtlasBaseException {
Expand Down

0 comments on commit e0a1e9f

Please sign in to comment.