This is an automated email from the ASF dual-hosted git repository.

nixon pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/atlas.git


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new cec6e83  ATLAS-3340 :- Fix java doc for 
/v2/entity/bulk/uniqueAttribute API.java
cec6e83 is described below

commit cec6e83d3698cfc7b5deea90700411034223b7e3
Author: nikhilbonte <[email protected]>
AuthorDate: Wed Jul 17 14:08:45 2019 +0530

    ATLAS-3340 :- Fix java doc for /v2/entity/bulk/uniqueAttribute API.java
    
    Signed-off-by: nixonrodrigues <[email protected]>
    (cherry picked from commit c9af474a4d141c4214e1d7bf4b891b033890bb98)
---
 webapp/src/main/java/org/apache/atlas/web/rest/EntityREST.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/webapp/src/main/java/org/apache/atlas/web/rest/EntityREST.java 
b/webapp/src/main/java/org/apache/atlas/web/rest/EntityREST.java
index f4abd7f..e5b9563 100644
--- a/webapp/src/main/java/org/apache/atlas/web/rest/EntityREST.java
+++ b/webapp/src/main/java/org/apache/atlas/web/rest/EntityREST.java
@@ -596,7 +596,7 @@ public class EntityREST {
      *
      * The REST request would look something like this
      *
-     * GET 
/v2/entity/bulk/uniqueAttribute/type/hive_db?attrs_0:qualifiedName=db1@cl1&attrs_2:qualifiedName=db2@cl1
+     * GET 
/v2/entity/bulk/uniqueAttribute/type/hive_db?attr_0:qualifiedName=db1@cl1&attr_2:qualifiedName=db2@cl1
      *
      * @param typeName
      * @param minExtInfo
@@ -853,7 +853,7 @@ public class EntityREST {
         return attributes;
     }
 
-    // attrs_1:qualifiedName=db1@cl1&attrs_2:qualifiedName=db2@cl1 ==> [ { 
qualifiedName:db1@cl1 }, { qualifiedName:db2@cl1 } ]
+    // attr_1:qualifiedName=db1@cl1&attr_2:qualifiedName=db2@cl1 ==> [ { 
qualifiedName:db1@cl1 }, { qualifiedName:db2@cl1 } ]
     private List<Map<String, Object>> getAttributesList(HttpServletRequest 
request) {
         Map<String, Map<String, Object>> ret = new HashMap<>();
 

Reply via email to