Skip to content

Commit

Permalink
Merge pull request #2444 from atlanhq/fixDuplicateAssignedEntities-beta
Browse files Browse the repository at this point in the history
Skip assigning duplicate terms to assets
  • Loading branch information
n5nk authored Nov 2, 2023
2 parents 31f8fcc + b3e43c9 commit 84c0705
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 84c0705

Please sign in to comment.