You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ps...@apache.org on 2019/02/10 16:02:36 UTC

[hbase] branch branch-1.2 updated: HBASE-21861: Handle the missing file issues from the Linkchecker job

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

psomogyi pushed a commit to branch branch-1.2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-1.2 by this push:
     new 5dff867  HBASE-21861: Handle the missing file issues from the Linkchecker job
5dff867 is described below

commit 5dff8673a2a1c898989e3bed97641a5305f7a9f5
Author: Sakthi <sa...@gmail.com>
AuthorDate: Fri Feb 8 19:46:34 2019 -0800

    HBASE-21861: Handle the missing file issues from the Linkchecker job
    
    Signed-off-by: Peter Somogyi <ps...@apache.org>
---
 .../main/java/org/apache/hadoop/hbase/HTableDescriptor.java  |  6 +++---
 pom.xml                                                      | 12 +++++++++++-
 2 files changed, 14 insertions(+), 4 deletions(-)

diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/HTableDescriptor.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/HTableDescriptor.java
index 0eb0d20..573765d 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/HTableDescriptor.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/HTableDescriptor.java
@@ -336,7 +336,7 @@ public class HTableDescriptor implements WritableComparable<HTableDescriptor> {
   /**
    * Construct a table descriptor specifying a TableName object
    * @param name Table name.
-   * @see <a href="HADOOP-1581">HADOOP-1581 HBASE: Un-openable tablename bug</a>
+   * @see <a href="https://issues.apache.org/jira/browse/HBASE-174">HADOOP-1581 HBASE: (HBASE-174) Un-openable tablename bug</a>
    */
   public HTableDescriptor(final TableName name) {
     super();
@@ -346,7 +346,7 @@ public class HTableDescriptor implements WritableComparable<HTableDescriptor> {
   /**
    * Construct a table descriptor specifying a byte array table name
    * @param name Table name.
-   * @see <a href="HADOOP-1581">HADOOP-1581 HBASE: Un-openable tablename bug</a>
+   * @see <a href="https://issues.apache.org/jira/browse/HBASE-174">HADOOP-1581 HBASE: (HBASE-174) Un-openable tablename bug</a>
    */
   @Deprecated
   public HTableDescriptor(final byte[] name) {
@@ -356,7 +356,7 @@ public class HTableDescriptor implements WritableComparable<HTableDescriptor> {
   /**
    * Construct a table descriptor specifying a String table name
    * @param name Table name.
-   * @see <a href="HADOOP-1581">HADOOP-1581 HBASE: Un-openable tablename bug</a>
+   * @see <a href="https://issues.apache.org/jira/browse/HBASE-174">HADOOP-1581 HBASE: (HBASE-174) Un-openable tablename bug</a>
    */
   @Deprecated
   public HTableDescriptor(final String name) {
diff --git a/pom.xml b/pom.xml
index 93dafc5..b61cdfc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2665,7 +2665,7 @@
         <configuration>
           <aggregate>true</aggregate>
           <linkJavadoc>true</linkJavadoc>
-          <javadocDir>${basedir}/target/site/apidocs</javadocDir>
+          <javadocDir>${basedir}/target/site/devapidocs</javadocDir>
           <reportOutputDirectory>${basedir}/target/site/xref</reportOutputDirectory>
           <destDir>${basedir}/target/site/xref</destDir>
           <excludes>
@@ -2706,6 +2706,16 @@
             </reports>
             <configuration>
               <destDir>devapidocs</destDir>
+              <name>Developer API</name>
+              <description>The full HBase API, including private and unstable APIs</description>
+              <sourceFileExcludes>
+                <exclude>**/generated/*</exclude>
+                <exclude>**/protobuf/*</exclude>
+              </sourceFileExcludes>
+              <excludePackageNames>org.apache.hadoop.hbase.tmpl.common:com.google.protobuf:org.apache.hadoop.hbase.generated*</excludePackageNames>
+              <show>private</show> <!-- (shows all classes and members) -->
+              <quiet>true</quiet>
+              <notimestamp>true</notimestamp>
             </configuration>
           </reportSet>