Repository: hbase-site
Updated Branches:
  refs/heads/asf-site ddf69c75f -> bb78f24d2


http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/devapidocs/src-html/org/apache/hadoop/hbase/zookeeper/ZKWatcher.html
----------------------------------------------------------------------
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/zookeeper/ZKWatcher.html 
b/devapidocs/src-html/org/apache/hadoop/hbase/zookeeper/ZKWatcher.html
index bbbd959..0d9db4e 100644
--- a/devapidocs/src-html/org/apache/hadoop/hbase/zookeeper/ZKWatcher.html
+++ b/devapidocs/src-html/org/apache/hadoop/hbase/zookeeper/ZKWatcher.html
@@ -615,53 +615,55 @@
 <span class="sourceLineNo">607</span>  public void 
interruptedException(InterruptedException ie) throws KeeperException {<a 
name="line.607"></a>
 <span class="sourceLineNo">608</span>    interruptedExceptionNoThrow(ie, 
true);<a name="line.608"></a>
 <span class="sourceLineNo">609</span>    // Throw a system error exception to 
let upper level handle it<a name="line.609"></a>
-<span class="sourceLineNo">610</span>    throw new 
KeeperException.SystemErrorException();<a name="line.610"></a>
-<span class="sourceLineNo">611</span>  }<a name="line.611"></a>
-<span class="sourceLineNo">612</span><a name="line.612"></a>
-<span class="sourceLineNo">613</span>  /**<a name="line.613"></a>
-<span class="sourceLineNo">614</span>   * Log the InterruptedException and 
interrupt current thread<a name="line.614"></a>
-<span class="sourceLineNo">615</span>   * @param ie The IterruptedException to 
log<a name="line.615"></a>
-<span class="sourceLineNo">616</span>   * @param throwLater Whether we will 
throw the exception latter<a name="line.616"></a>
-<span class="sourceLineNo">617</span>   */<a name="line.617"></a>
-<span class="sourceLineNo">618</span>  public void 
interruptedExceptionNoThrow(InterruptedException ie, boolean throwLater) {<a 
name="line.618"></a>
-<span class="sourceLineNo">619</span>    LOG.debug(prefix("Received 
InterruptedException, will interrupt current thread"<a name="line.619"></a>
-<span class="sourceLineNo">620</span>        + (throwLater ? " and rethrow a 
SystemErrorException" : "")),<a name="line.620"></a>
-<span class="sourceLineNo">621</span>      ie);<a name="line.621"></a>
-<span class="sourceLineNo">622</span>    // At least preserve interrupt.<a 
name="line.622"></a>
-<span class="sourceLineNo">623</span>    Thread.currentThread().interrupt();<a 
name="line.623"></a>
-<span class="sourceLineNo">624</span>  }<a name="line.624"></a>
-<span class="sourceLineNo">625</span><a name="line.625"></a>
-<span class="sourceLineNo">626</span>  /**<a name="line.626"></a>
-<span class="sourceLineNo">627</span>   * Close the connection to ZooKeeper.<a 
name="line.627"></a>
-<span class="sourceLineNo">628</span>   *<a name="line.628"></a>
-<span class="sourceLineNo">629</span>   */<a name="line.629"></a>
-<span class="sourceLineNo">630</span>  @Override<a name="line.630"></a>
-<span class="sourceLineNo">631</span>  public void close() {<a 
name="line.631"></a>
-<span class="sourceLineNo">632</span>    try {<a name="line.632"></a>
-<span class="sourceLineNo">633</span>      recoverableZooKeeper.close();<a 
name="line.633"></a>
-<span class="sourceLineNo">634</span>    } catch (InterruptedException e) {<a 
name="line.634"></a>
-<span class="sourceLineNo">635</span>      
Thread.currentThread().interrupt();<a name="line.635"></a>
-<span class="sourceLineNo">636</span>    }<a name="line.636"></a>
-<span class="sourceLineNo">637</span>  }<a name="line.637"></a>
-<span class="sourceLineNo">638</span><a name="line.638"></a>
-<span class="sourceLineNo">639</span>  public Configuration getConfiguration() 
{<a name="line.639"></a>
-<span class="sourceLineNo">640</span>    return conf;<a name="line.640"></a>
-<span class="sourceLineNo">641</span>  }<a name="line.641"></a>
-<span class="sourceLineNo">642</span><a name="line.642"></a>
-<span class="sourceLineNo">643</span>  @Override<a name="line.643"></a>
-<span class="sourceLineNo">644</span>  public void abort(String why, Throwable 
e) {<a name="line.644"></a>
-<span class="sourceLineNo">645</span>    if (this.abortable != null) {<a 
name="line.645"></a>
-<span class="sourceLineNo">646</span>      this.abortable.abort(why, e);<a 
name="line.646"></a>
-<span class="sourceLineNo">647</span>    } else {<a name="line.647"></a>
-<span class="sourceLineNo">648</span>      this.aborted = true;<a 
name="line.648"></a>
-<span class="sourceLineNo">649</span>    }<a name="line.649"></a>
-<span class="sourceLineNo">650</span>  }<a name="line.650"></a>
-<span class="sourceLineNo">651</span><a name="line.651"></a>
-<span class="sourceLineNo">652</span>  @Override<a name="line.652"></a>
-<span class="sourceLineNo">653</span>  public boolean isAborted() {<a 
name="line.653"></a>
-<span class="sourceLineNo">654</span>    return this.abortable == null? 
this.aborted: this.abortable.isAborted();<a name="line.654"></a>
-<span class="sourceLineNo">655</span>  }<a name="line.655"></a>
-<span class="sourceLineNo">656</span>}<a name="line.656"></a>
+<span class="sourceLineNo">610</span>    KeeperException keeperException = new 
KeeperException.SystemErrorException();<a name="line.610"></a>
+<span class="sourceLineNo">611</span>    keeperException.initCause(ie);<a 
name="line.611"></a>
+<span class="sourceLineNo">612</span>    throw keeperException;<a 
name="line.612"></a>
+<span class="sourceLineNo">613</span>  }<a name="line.613"></a>
+<span class="sourceLineNo">614</span><a name="line.614"></a>
+<span class="sourceLineNo">615</span>  /**<a name="line.615"></a>
+<span class="sourceLineNo">616</span>   * Log the InterruptedException and 
interrupt current thread<a name="line.616"></a>
+<span class="sourceLineNo">617</span>   * @param ie The IterruptedException to 
log<a name="line.617"></a>
+<span class="sourceLineNo">618</span>   * @param throwLater Whether we will 
throw the exception latter<a name="line.618"></a>
+<span class="sourceLineNo">619</span>   */<a name="line.619"></a>
+<span class="sourceLineNo">620</span>  public void 
interruptedExceptionNoThrow(InterruptedException ie, boolean throwLater) {<a 
name="line.620"></a>
+<span class="sourceLineNo">621</span>    LOG.debug(prefix("Received 
InterruptedException, will interrupt current thread"<a name="line.621"></a>
+<span class="sourceLineNo">622</span>        + (throwLater ? " and rethrow a 
SystemErrorException" : "")),<a name="line.622"></a>
+<span class="sourceLineNo">623</span>      ie);<a name="line.623"></a>
+<span class="sourceLineNo">624</span>    // At least preserve interrupt.<a 
name="line.624"></a>
+<span class="sourceLineNo">625</span>    Thread.currentThread().interrupt();<a 
name="line.625"></a>
+<span class="sourceLineNo">626</span>  }<a name="line.626"></a>
+<span class="sourceLineNo">627</span><a name="line.627"></a>
+<span class="sourceLineNo">628</span>  /**<a name="line.628"></a>
+<span class="sourceLineNo">629</span>   * Close the connection to ZooKeeper.<a 
name="line.629"></a>
+<span class="sourceLineNo">630</span>   *<a name="line.630"></a>
+<span class="sourceLineNo">631</span>   */<a name="line.631"></a>
+<span class="sourceLineNo">632</span>  @Override<a name="line.632"></a>
+<span class="sourceLineNo">633</span>  public void close() {<a 
name="line.633"></a>
+<span class="sourceLineNo">634</span>    try {<a name="line.634"></a>
+<span class="sourceLineNo">635</span>      recoverableZooKeeper.close();<a 
name="line.635"></a>
+<span class="sourceLineNo">636</span>    } catch (InterruptedException e) {<a 
name="line.636"></a>
+<span class="sourceLineNo">637</span>      
Thread.currentThread().interrupt();<a name="line.637"></a>
+<span class="sourceLineNo">638</span>    }<a name="line.638"></a>
+<span class="sourceLineNo">639</span>  }<a name="line.639"></a>
+<span class="sourceLineNo">640</span><a name="line.640"></a>
+<span class="sourceLineNo">641</span>  public Configuration getConfiguration() 
{<a name="line.641"></a>
+<span class="sourceLineNo">642</span>    return conf;<a name="line.642"></a>
+<span class="sourceLineNo">643</span>  }<a name="line.643"></a>
+<span class="sourceLineNo">644</span><a name="line.644"></a>
+<span class="sourceLineNo">645</span>  @Override<a name="line.645"></a>
+<span class="sourceLineNo">646</span>  public void abort(String why, Throwable 
e) {<a name="line.646"></a>
+<span class="sourceLineNo">647</span>    if (this.abortable != null) {<a 
name="line.647"></a>
+<span class="sourceLineNo">648</span>      this.abortable.abort(why, e);<a 
name="line.648"></a>
+<span class="sourceLineNo">649</span>    } else {<a name="line.649"></a>
+<span class="sourceLineNo">650</span>      this.aborted = true;<a 
name="line.650"></a>
+<span class="sourceLineNo">651</span>    }<a name="line.651"></a>
+<span class="sourceLineNo">652</span>  }<a name="line.652"></a>
+<span class="sourceLineNo">653</span><a name="line.653"></a>
+<span class="sourceLineNo">654</span>  @Override<a name="line.654"></a>
+<span class="sourceLineNo">655</span>  public boolean isAborted() {<a 
name="line.655"></a>
+<span class="sourceLineNo">656</span>    return this.abortable == null? 
this.aborted: this.abortable.isAborted();<a name="line.656"></a>
+<span class="sourceLineNo">657</span>  }<a name="line.657"></a>
+<span class="sourceLineNo">658</span>}<a name="line.658"></a>
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/downloads.html
----------------------------------------------------------------------
diff --git a/downloads.html b/downloads.html
index 6752774..f1c834c 100644
--- a/downloads.html
+++ b/downloads.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Apache HBase Downloads</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" 
/>
@@ -366,7 +366,7 @@ under the License. -->
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/export_control.html
----------------------------------------------------------------------
diff --git a/export_control.html b/export_control.html
index a123018..94b223a 100644
--- a/export_control.html
+++ b/export_control.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; 
       Export Control
@@ -331,7 +331,7 @@ for more details.</p>
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/index.html
----------------------------------------------------------------------
diff --git a/index.html b/index.html
index acdddbb..f3d1453 100644
--- a/index.html
+++ b/index.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Apache HBase™ Home</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" 
/>
@@ -411,7 +411,7 @@ Apache HBase is an open-source, distributed, versioned, 
non-relational database
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/integration.html
----------------------------------------------------------------------
diff --git a/integration.html b/integration.html
index e75b291..ac268a1 100644
--- a/integration.html
+++ b/integration.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; CI Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" 
/>
@@ -291,7 +291,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/issue-tracking.html
----------------------------------------------------------------------
diff --git a/issue-tracking.html b/issue-tracking.html
index 8636324..b8d2fb5 100644
--- a/issue-tracking.html
+++ b/issue-tracking.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Issue Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" 
/>
@@ -288,7 +288,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/license.html
----------------------------------------------------------------------
diff --git a/license.html b/license.html
index d0790c9..5d2a7de 100644
--- a/license.html
+++ b/license.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Licenses</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" 
/>
@@ -491,7 +491,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/mail-lists.html
----------------------------------------------------------------------
diff --git a/mail-lists.html b/mail-lists.html
index 92780ff..943d92d 100644
--- a/mail-lists.html
+++ b/mail-lists.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Mailing Lists</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" 
/>
@@ -341,7 +341,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/metrics.html
----------------------------------------------------------------------
diff --git a/metrics.html b/metrics.html
index 6efd29d..bd09a26 100644
--- a/metrics.html
+++ b/metrics.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013;  
       Apache HBase (TM) Metrics
@@ -459,7 +459,7 @@ export HBASE_REGIONSERVER_OPTS=&quot;$HBASE_JMX_OPTS 
-Dcom.sun.management.jmxrem
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/old_news.html
----------------------------------------------------------------------
diff --git a/old_news.html b/old_news.html
index 5d896f7..eec4ea3 100644
--- a/old_news.html
+++ b/old_news.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; 
       Old Apache HBase (TM) News
@@ -440,7 +440,7 @@ under the License. -->
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/plugin-management.html
----------------------------------------------------------------------
diff --git a/plugin-management.html b/plugin-management.html
index a8210cd..fad0a7a 100644
--- a/plugin-management.html
+++ b/plugin-management.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Plugin Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" 
/>
@@ -440,7 +440,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/plugins.html
----------------------------------------------------------------------
diff --git a/plugins.html b/plugins.html
index d87619d..434dc22 100644
--- a/plugins.html
+++ b/plugins.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Plugins</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" 
/>
@@ -375,7 +375,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/poweredbyhbase.html
----------------------------------------------------------------------
diff --git a/poweredbyhbase.html b/poweredbyhbase.html
index e9d545e..d77e8cf 100644
--- a/poweredbyhbase.html
+++ b/poweredbyhbase.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Powered By Apache HBase™</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" 
/>
@@ -769,7 +769,7 @@ under the License. -->
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/project-info.html
----------------------------------------------------------------------
diff --git a/project-info.html b/project-info.html
index 27f6eaa..b6c05bf 100644
--- a/project-info.html
+++ b/project-info.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Information</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" 
/>
@@ -335,7 +335,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/project-reports.html
----------------------------------------------------------------------
diff --git a/project-reports.html b/project-reports.html
index 276b0ad..f00ab1d 100644
--- a/project-reports.html
+++ b/project-reports.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Generated Reports</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" 
/>
@@ -305,7 +305,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/project-summary.html
----------------------------------------------------------------------
diff --git a/project-summary.html b/project-summary.html
index 2ddbaa2..dd8a18f 100644
--- a/project-summary.html
+++ b/project-summary.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Summary</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" 
/>
@@ -331,7 +331,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/pseudo-distributed.html
----------------------------------------------------------------------
diff --git a/pseudo-distributed.html b/pseudo-distributed.html
index de29255..cda4e51 100644
--- a/pseudo-distributed.html
+++ b/pseudo-distributed.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013;  
 Running Apache HBase (TM) in pseudo-distributed mode
@@ -308,7 +308,7 @@ under the License. -->
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/replication.html
----------------------------------------------------------------------
diff --git a/replication.html b/replication.html
index 71a8e63..f87af1c 100644
--- a/replication.html
+++ b/replication.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; 
       Apache HBase (TM) Replication
@@ -303,7 +303,7 @@ under the License. -->
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/resources.html
----------------------------------------------------------------------
diff --git a/resources.html b/resources.html
index c231a4c..68a87af 100644
--- a/resources.html
+++ b/resources.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Other Apache HBase (TM) Resources</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" 
/>
@@ -331,7 +331,7 @@ under the License. -->
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/source-repository.html
----------------------------------------------------------------------
diff --git a/source-repository.html b/source-repository.html
index 09b02f4..7b17634 100644
--- a/source-repository.html
+++ b/source-repository.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Source Code Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" 
/>
@@ -299,7 +299,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/sponsors.html
----------------------------------------------------------------------
diff --git a/sponsors.html b/sponsors.html
index 33d1ee6..eab6fb3 100644
--- a/sponsors.html
+++ b/sponsors.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Apache HBase™ Sponsors</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" 
/>
@@ -333,7 +333,7 @@ under the License. -->
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/supportingprojects.html
----------------------------------------------------------------------
diff --git a/supportingprojects.html b/supportingprojects.html
index ad56370..0ce0680 100644
--- a/supportingprojects.html
+++ b/supportingprojects.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Supporting Projects</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" 
/>
@@ -520,7 +520,7 @@ under the License. -->
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/bb78f24d/team-list.html
----------------------------------------------------------------------
diff --git a/team-list.html b/team-list.html
index 0c31ace..2eea6e6 100644
--- a/team-list.html
+++ b/team-list.html
@@ -7,7 +7,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20180612" />
+    <meta name="Date-Revision-yyyymmdd" content="20180613" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Team</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" 
/>
@@ -736,7 +736,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-12</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-06-13</li>
             </p>
                 </div>
 

Reply via email to