Commit 015b8bf3 by Sarath Subramanian

ATLAS-2643: Re-evaluate tag propagation when a relationship edge is deleted - fix UT

parent 967bf67e
...@@ -311,7 +311,7 @@ public abstract class DeleteHandlerV1 { ...@@ -311,7 +311,7 @@ public abstract class DeleteHandlerV1 {
// for relationship edges, inverse vertex's relationship attribute doesn't need to be updated. // for relationship edges, inverse vertex's relationship attribute doesn't need to be updated.
// only delete the reference relationship edge // only delete the reference relationship edge
if (isRelationshipEdge(edge)) { if (GraphHelper.isRelationshipEdge(edge)) {
deleteEdge(edge, isInternalType); deleteEdge(edge, isInternalType);
AtlasVertex referencedVertex = entityRetriever.getReferencedEntityVertex(edge, relationshipDirection, entityVertex); AtlasVertex referencedVertex = entityRetriever.getReferencedEntityVertex(edge, relationshipDirection, entityVertex);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment