From 880d0b4011cc04eb1fc2201c797cd30fda5df4a2 Mon Sep 17 00:00:00 2001 From: Suman Das <59254445+sumandas0@users.noreply.github.com> Date: Thu, 31 Aug 2023 17:04:27 +0530 Subject: [PATCH] fix: fixing the not case --- .../atlas/repository/store/graph/v2/EntityGraphMapper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repository/src/main/java/org/apache/atlas/repository/store/graph/v2/EntityGraphMapper.java b/repository/src/main/java/org/apache/atlas/repository/store/graph/v2/EntityGraphMapper.java index 0a69434094..b446f4c299 100644 --- a/repository/src/main/java/org/apache/atlas/repository/store/graph/v2/EntityGraphMapper.java +++ b/repository/src/main/java/org/apache/atlas/repository/store/graph/v2/EntityGraphMapper.java @@ -3186,7 +3186,7 @@ public void updateClassifications(EntityMutationContext context, String guid, Li isClassificationUpdated = true; boolean isEntityDeleted = DELETED.toString().equals(entityVertex.getProperty(STATE_PROPERTY_KEY, String.class)); - if (isEntityDeleted && !updatedRemovePropagations) { + if (isEntityDeleted && updatedRemovePropagations) { removePropagation = true; } }