This is an automated email from the ASF dual-hosted git repository. nixon pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/atlas.git
The following commit(s) were added to refs/heads/master by this push: new 3ca9650 ATLAS-4179 : Incorrect error message when only dependent term is not present in bulk glossary import. 3ca9650 is described below commit 3ca9650ca51b7c63c2f4f4d2cf7ff889820548f4 Author: chaitali borole <chaitali.bor...@cloudera.com> AuthorDate: Fri Apr 9 14:43:17 2021 +0530 ATLAS-4179 : Incorrect error message when only dependent term is not present in bulk glossary import. --- .../src/main/java/org/apache/atlas/glossary/GlossaryTermUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repository/src/main/java/org/apache/atlas/glossary/GlossaryTermUtils.java b/repository/src/main/java/org/apache/atlas/glossary/GlossaryTermUtils.java index 80b09a3..f5789a7 100644 --- a/repository/src/main/java/org/apache/atlas/glossary/GlossaryTermUtils.java +++ b/repository/src/main/java/org/apache/atlas/glossary/GlossaryTermUtils.java @@ -688,8 +688,8 @@ public class GlossaryTermUtils extends GlossaryUtils { relatedTermHeader.setTermGuid(glossaryTermGuid); ret.add(relatedTermHeader); } else { - failedTermMsgs.add(System.lineSeparator() + "The provided Reference Glossary and TermName does not exist in the system " + - dataArray[1] + FileUtils.COLON_CHARACTER + dataArray[0] + " for record with TermName : " + termName + " and GlossaryName : " + glossaryName); + failedTermMsgs.add("\n" + "The provided Reference Glossary and TermName does not exist in the system " + + dataArray[1] + "@" + dataArray[0] + " for record with TermName : " + termName + " and GlossaryName : " + glossaryName); } } }