Skip to content

Commit

Permalink
test this out
Browse files Browse the repository at this point in the history
  • Loading branch information
eboneil committed Feb 2, 2024
1 parent 5331304 commit 24b73af
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ private static ChangeEvent getDescriptionChangeEvent(
.operation(ChangeOperation.ADD)
.semVerChange(SemanticChangeType.MINOR)
.description(String.format(DESCRIPTION_ADDED, entityUrn, targetDescription))
.parameters(String.format(DESCRIPTION_ADDED, entityUrn, targetDescription))
.auditStamp(auditStamp)
.build();
} else if (baseDescription != null && targetDescription == null) {
Expand All @@ -67,6 +68,7 @@ private static ChangeEvent getDescriptionChangeEvent(
.operation(ChangeOperation.REMOVE)
.semVerChange(SemanticChangeType.MINOR)
.description(String.format(DESCRIPTION_REMOVED, entityUrn, baseDescription))
.parameters(String.format(DESCRIPTION_REMOVED, entityUrn, baseDescription))
.auditStamp(auditStamp)
.build();
} else if (baseDescription != null
Expand All @@ -80,6 +82,8 @@ private static ChangeEvent getDescriptionChangeEvent(
.semVerChange(SemanticChangeType.MINOR)
.description(
String.format(DESCRIPTION_CHANGED, entityUrn, baseDescription, targetDescription))
.parameters(
String.format(DESCRIPTION_CHANGED, entityUrn, baseDescription, targetDescription))
.auditStamp(auditStamp)
.build();
}
Expand Down

0 comments on commit 24b73af

Please sign in to comment.