Skip to content

Commit

Permalink
Merge pull request #3507 from atlanhq/mesh-148-link-api
Browse files Browse the repository at this point in the history
MESH-192 Bulk link api for domain<>asset link
  • Loading branch information
PRATHAM2002-DS authored Sep 10, 2024
2 parents 741e7cc + 83e7463 commit 696ad94
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4698,7 +4698,7 @@ public List<AtlasVertex> unlinkMeshEntityFromAssets(String meshEntityId, Set<Str
if (meshEntityId.isEmpty() || existingValues.contains(meshEntityId)) {
isAuthorizedToLink(ev);

if (meshEntityId.isEmpty() || meshEntityId == null) {
if (StringUtils.isEmpty(meshEntityId)) {
existingValues.clear();
ev.removeProperty(DOMAIN_GUIDS_ATTR);
} else {
Expand Down

0 comments on commit 696ad94

Please sign in to comment.