Skip to content

Commit

Permalink
handled default delete type case
Browse files Browse the repository at this point in the history
  • Loading branch information
PRATHAM2002-DS committed Jul 9, 2024
1 parent 45a630c commit 73d9215
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ public void processDelete(AtlasVertex vertex) throws AtlasBaseException {
}
}
}
if(RequestContext.get().getDeleteType() == DeleteType.SOFT){
if(RequestContext.get().getDeleteType() == DeleteType.SOFT || RequestContext.get().getDeleteType() == DeleteType.DEFAULT){
vertex.setProperty(DAAP_STATUS_ATTR, DAAP_ARCHIVED_STATUS);
}
}
Expand Down

0 comments on commit 73d9215

Please sign in to comment.