Skip to content

Commit

Permalink
Merge pull request #2505 from atlanhq/fixDuplicateAssignedEntitiesPLT305
Browse files Browse the repository at this point in the history
PLT-305: (master) Skip assigning duplicate terms to assets
  • Loading branch information
checkaayush authored Nov 27, 2023
2 parents e45c184 + cf06a82 commit 0590a7c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ public void processTermAssignments(AtlasGlossaryTerm glossaryTerm, Collection<At
if (CollectionUtils.isNotEmpty(assignedEntities) && assignedEntities.contains(objectId)) {
if (DEBUG_ENABLED) {
LOG.debug("Skipping already assigned entity {}", objectId);
continue;
}
continue;
}

if (DEBUG_ENABLED) {
Expand Down

0 comments on commit 0590a7c

Please sign in to comment.