Skip to content

Commit

Permalink
Merge pull request #2336 from atlanhq/tag/gov-1311
Browse files Browse the repository at this point in the history
fix: fixing the not case
  • Loading branch information
sumandas0 authored Aug 31, 2023
2 parents d9403a6 + 880d0b4 commit 95f400d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 95f400d

Please sign in to comment.