diff --git a/repository/src/main/java/org/apache/atlas/repository/store/graph/v2/AtlasBusinessMetadataDefStoreV2.java b/repository/src/main/java/org/apache/atlas/repository/store/graph/v2/AtlasBusinessMetadataDefStoreV2.java index 14e0d19aed..2df84d2049 100644 --- a/repository/src/main/java/org/apache/atlas/repository/store/graph/v2/AtlasBusinessMetadataDefStoreV2.java +++ b/repository/src/main/java/org/apache/atlas/repository/store/graph/v2/AtlasBusinessMetadataDefStoreV2.java @@ -482,7 +482,7 @@ private void validateRichTextAttributeLimit(AtlasBusinessMetadataDef businessMet throw new AtlasBaseException(AtlasErrorCode.INVALID_PARAMETERS, String.format("Cannot create business metadata attributes. Total rich text attributes would exceed limit of %d. " + "Current: %d, Attempting to add: %d, Limit: %d", - existingRichTextCount, newRichTextCount, limit, limit)); + limit, existingRichTextCount, newRichTextCount, limit)); } }