Repository: hbase-site
Updated Branches:
  refs/heads/asf-site 921a91b8f -> 1c87639a0


http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/RSRpcServices.html
----------------------------------------------------------------------
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/RSRpcServices.html 
b/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/RSRpcServices.html
index b257d07..86f2fb9 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/RSRpcServices.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/RSRpcServices.html
@@ -3742,44 +3742,47 @@
 <span class="sourceLineNo">3734</span>      callable = 
Class.forName(request.getProcClass()).asSubclass(RSProcedureCallable.class)<a 
name="line.3734"></a>
 <span class="sourceLineNo">3735</span>        
.getDeclaredConstructor().newInstance();<a name="line.3735"></a>
 <span class="sourceLineNo">3736</span>    } catch (Exception e) {<a 
name="line.3736"></a>
-<span class="sourceLineNo">3737</span>      
regionServer.remoteProcedureComplete(request.getProcId(), e);<a 
name="line.3737"></a>
-<span class="sourceLineNo">3738</span>      return;<a name="line.3738"></a>
-<span class="sourceLineNo">3739</span>    }<a name="line.3739"></a>
-<span class="sourceLineNo">3740</span>    
callable.init(request.getProcData().toByteArray(), regionServer);<a 
name="line.3740"></a>
-<span class="sourceLineNo">3741</span>    
regionServer.executeProcedure(request.getProcId(), callable);<a 
name="line.3741"></a>
-<span class="sourceLineNo">3742</span>  }<a name="line.3742"></a>
-<span class="sourceLineNo">3743</span><a name="line.3743"></a>
-<span class="sourceLineNo">3744</span>  @Override<a name="line.3744"></a>
-<span class="sourceLineNo">3745</span>  @QosPriority(priority = 
HConstants.ADMIN_QOS)<a name="line.3745"></a>
-<span class="sourceLineNo">3746</span>  public ExecuteProceduresResponse 
executeProcedures(RpcController controller,<a name="line.3746"></a>
-<span class="sourceLineNo">3747</span>      ExecuteProceduresRequest request) 
throws ServiceException {<a name="line.3747"></a>
-<span class="sourceLineNo">3748</span>    try {<a name="line.3748"></a>
-<span class="sourceLineNo">3749</span>      checkOpen();<a 
name="line.3749"></a>
-<span class="sourceLineNo">3750</span>      
regionServer.getRegionServerCoprocessorHost().preExecuteProcedures();<a 
name="line.3750"></a>
-<span class="sourceLineNo">3751</span>      if (request.getOpenRegionCount() 
&gt; 0) {<a name="line.3751"></a>
-<span class="sourceLineNo">3752</span>        // Avoid reading from the 
TableDescritor every time(usually it will read from the file<a 
name="line.3752"></a>
-<span class="sourceLineNo">3753</span>        // system)<a 
name="line.3753"></a>
-<span class="sourceLineNo">3754</span>        Map&lt;TableName, 
TableDescriptor&gt; tdCache = new HashMap&lt;&gt;();<a name="line.3754"></a>
-<span class="sourceLineNo">3755</span>        
request.getOpenRegionList().forEach(req -&gt; executeOpenRegionProcedures(req, 
tdCache));<a name="line.3755"></a>
-<span class="sourceLineNo">3756</span>      }<a name="line.3756"></a>
-<span class="sourceLineNo">3757</span>      if (request.getCloseRegionCount() 
&gt; 0) {<a name="line.3757"></a>
-<span class="sourceLineNo">3758</span>        
request.getCloseRegionList().forEach(this::executeCloseRegionProcedures);<a 
name="line.3758"></a>
+<span class="sourceLineNo">3737</span>      LOG.warn("Failed to instantiating 
remote procedure {}, pid={}", request.getProcClass(),<a name="line.3737"></a>
+<span class="sourceLineNo">3738</span>        request.getProcId(), e);<a 
name="line.3738"></a>
+<span class="sourceLineNo">3739</span>      
regionServer.remoteProcedureComplete(request.getProcId(), e);<a 
name="line.3739"></a>
+<span class="sourceLineNo">3740</span>      return;<a name="line.3740"></a>
+<span class="sourceLineNo">3741</span>    }<a name="line.3741"></a>
+<span class="sourceLineNo">3742</span>    
callable.init(request.getProcData().toByteArray(), regionServer);<a 
name="line.3742"></a>
+<span class="sourceLineNo">3743</span>    LOG.debug("Executing remote 
procedure {}, pid={}", callable.getClass(), request.getProcId());<a 
name="line.3743"></a>
+<span class="sourceLineNo">3744</span>    
regionServer.executeProcedure(request.getProcId(), callable);<a 
name="line.3744"></a>
+<span class="sourceLineNo">3745</span>  }<a name="line.3745"></a>
+<span class="sourceLineNo">3746</span><a name="line.3746"></a>
+<span class="sourceLineNo">3747</span>  @Override<a name="line.3747"></a>
+<span class="sourceLineNo">3748</span>  @QosPriority(priority = 
HConstants.ADMIN_QOS)<a name="line.3748"></a>
+<span class="sourceLineNo">3749</span>  public ExecuteProceduresResponse 
executeProcedures(RpcController controller,<a name="line.3749"></a>
+<span class="sourceLineNo">3750</span>      ExecuteProceduresRequest request) 
throws ServiceException {<a name="line.3750"></a>
+<span class="sourceLineNo">3751</span>    try {<a name="line.3751"></a>
+<span class="sourceLineNo">3752</span>      checkOpen();<a 
name="line.3752"></a>
+<span class="sourceLineNo">3753</span>      
regionServer.getRegionServerCoprocessorHost().preExecuteProcedures();<a 
name="line.3753"></a>
+<span class="sourceLineNo">3754</span>      if (request.getOpenRegionCount() 
&gt; 0) {<a name="line.3754"></a>
+<span class="sourceLineNo">3755</span>        // Avoid reading from the 
TableDescritor every time(usually it will read from the file<a 
name="line.3755"></a>
+<span class="sourceLineNo">3756</span>        // system)<a 
name="line.3756"></a>
+<span class="sourceLineNo">3757</span>        Map&lt;TableName, 
TableDescriptor&gt; tdCache = new HashMap&lt;&gt;();<a name="line.3757"></a>
+<span class="sourceLineNo">3758</span>        
request.getOpenRegionList().forEach(req -&gt; executeOpenRegionProcedures(req, 
tdCache));<a name="line.3758"></a>
 <span class="sourceLineNo">3759</span>      }<a name="line.3759"></a>
-<span class="sourceLineNo">3760</span>      if (request.getProcCount() &gt; 0) 
{<a name="line.3760"></a>
-<span class="sourceLineNo">3761</span>        
request.getProcList().forEach(this::executeProcedures);<a name="line.3761"></a>
+<span class="sourceLineNo">3760</span>      if (request.getCloseRegionCount() 
&gt; 0) {<a name="line.3760"></a>
+<span class="sourceLineNo">3761</span>        
request.getCloseRegionList().forEach(this::executeCloseRegionProcedures);<a 
name="line.3761"></a>
 <span class="sourceLineNo">3762</span>      }<a name="line.3762"></a>
-<span class="sourceLineNo">3763</span>      
regionServer.getRegionServerCoprocessorHost().postExecuteProcedures();<a 
name="line.3763"></a>
-<span class="sourceLineNo">3764</span>      return 
ExecuteProceduresResponse.getDefaultInstance();<a name="line.3764"></a>
-<span class="sourceLineNo">3765</span>    } catch (IOException e) {<a 
name="line.3765"></a>
-<span class="sourceLineNo">3766</span>      throw new ServiceException(e);<a 
name="line.3766"></a>
-<span class="sourceLineNo">3767</span>    }<a name="line.3767"></a>
-<span class="sourceLineNo">3768</span>  }<a name="line.3768"></a>
-<span class="sourceLineNo">3769</span><a name="line.3769"></a>
-<span class="sourceLineNo">3770</span>  @VisibleForTesting<a 
name="line.3770"></a>
-<span class="sourceLineNo">3771</span>  public RpcScheduler getRpcScheduler() 
{<a name="line.3771"></a>
-<span class="sourceLineNo">3772</span>    return rpcServer.getScheduler();<a 
name="line.3772"></a>
-<span class="sourceLineNo">3773</span>  }<a name="line.3773"></a>
-<span class="sourceLineNo">3774</span>}<a name="line.3774"></a>
+<span class="sourceLineNo">3763</span>      if (request.getProcCount() &gt; 0) 
{<a name="line.3763"></a>
+<span class="sourceLineNo">3764</span>        
request.getProcList().forEach(this::executeProcedures);<a name="line.3764"></a>
+<span class="sourceLineNo">3765</span>      }<a name="line.3765"></a>
+<span class="sourceLineNo">3766</span>      
regionServer.getRegionServerCoprocessorHost().postExecuteProcedures();<a 
name="line.3766"></a>
+<span class="sourceLineNo">3767</span>      return 
ExecuteProceduresResponse.getDefaultInstance();<a name="line.3767"></a>
+<span class="sourceLineNo">3768</span>    } catch (IOException e) {<a 
name="line.3768"></a>
+<span class="sourceLineNo">3769</span>      throw new ServiceException(e);<a 
name="line.3769"></a>
+<span class="sourceLineNo">3770</span>    }<a name="line.3770"></a>
+<span class="sourceLineNo">3771</span>  }<a name="line.3771"></a>
+<span class="sourceLineNo">3772</span><a name="line.3772"></a>
+<span class="sourceLineNo">3773</span>  @VisibleForTesting<a 
name="line.3773"></a>
+<span class="sourceLineNo">3774</span>  public RpcScheduler getRpcScheduler() 
{<a name="line.3774"></a>
+<span class="sourceLineNo">3775</span>    return rpcServer.getScheduler();<a 
name="line.3775"></a>
+<span class="sourceLineNo">3776</span>  }<a name="line.3776"></a>
+<span class="sourceLineNo">3777</span>}<a name="line.3777"></a>
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/RemoteProcedureResultReporter.html
----------------------------------------------------------------------
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/RemoteProcedureResultReporter.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/RemoteProcedureResultReporter.html
index ee0d998..4f09cc3 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/RemoteProcedureResultReporter.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/RemoteProcedureResultReporter.html
@@ -65,59 +65,61 @@
 <span class="sourceLineNo">057</span>  public void complete(long procId, 
Throwable error) {<a name="line.57"></a>
 <span class="sourceLineNo">058</span>    RemoteProcedureResult.Builder builder 
= RemoteProcedureResult.newBuilder().setProcId(procId);<a name="line.58"></a>
 <span class="sourceLineNo">059</span>    if (error != null) {<a 
name="line.59"></a>
-<span class="sourceLineNo">060</span>      
builder.setStatus(RemoteProcedureResult.Status.ERROR).setError(<a 
name="line.60"></a>
-<span class="sourceLineNo">061</span>        
ForeignExceptionUtil.toProtoForeignException(server.getServerName().toString(), 
error));<a name="line.61"></a>
-<span class="sourceLineNo">062</span>    } else {<a name="line.62"></a>
-<span class="sourceLineNo">063</span>      
builder.setStatus(RemoteProcedureResult.Status.SUCCESS);<a name="line.63"></a>
-<span class="sourceLineNo">064</span>    }<a name="line.64"></a>
-<span class="sourceLineNo">065</span>    results.add(builder.build());<a 
name="line.65"></a>
-<span class="sourceLineNo">066</span>  }<a name="line.66"></a>
-<span class="sourceLineNo">067</span><a name="line.67"></a>
-<span class="sourceLineNo">068</span>  @Override<a name="line.68"></a>
-<span class="sourceLineNo">069</span>  public void run() {<a 
name="line.69"></a>
-<span class="sourceLineNo">070</span>    ReportProcedureDoneRequest.Builder 
builder = ReportProcedureDoneRequest.newBuilder();<a name="line.70"></a>
-<span class="sourceLineNo">071</span>    int tries = 0;<a name="line.71"></a>
-<span class="sourceLineNo">072</span>    while (!server.isStopped()) {<a 
name="line.72"></a>
-<span class="sourceLineNo">073</span>      if (builder.getResultCount() == 0) 
{<a name="line.73"></a>
-<span class="sourceLineNo">074</span>        try {<a name="line.74"></a>
-<span class="sourceLineNo">075</span>          
builder.addResult(results.take());<a name="line.75"></a>
-<span class="sourceLineNo">076</span>        } catch (InterruptedException e) 
{<a name="line.76"></a>
-<span class="sourceLineNo">077</span>          
Thread.currentThread().interrupt();<a name="line.77"></a>
-<span class="sourceLineNo">078</span>          continue;<a name="line.78"></a>
-<span class="sourceLineNo">079</span>        }<a name="line.79"></a>
-<span class="sourceLineNo">080</span>      }<a name="line.80"></a>
-<span class="sourceLineNo">081</span>      while (builder.getResultCount() 
&lt; MAX_BATCH) {<a name="line.81"></a>
-<span class="sourceLineNo">082</span>        RemoteProcedureResult result = 
results.poll();<a name="line.82"></a>
-<span class="sourceLineNo">083</span>        if (result == null) {<a 
name="line.83"></a>
-<span class="sourceLineNo">084</span>          break;<a name="line.84"></a>
-<span class="sourceLineNo">085</span>        }<a name="line.85"></a>
-<span class="sourceLineNo">086</span>        builder.addResult(result);<a 
name="line.86"></a>
-<span class="sourceLineNo">087</span>      }<a name="line.87"></a>
-<span class="sourceLineNo">088</span>      ReportProcedureDoneRequest request 
= builder.build();<a name="line.88"></a>
-<span class="sourceLineNo">089</span>      try {<a name="line.89"></a>
-<span class="sourceLineNo">090</span>        
server.reportProcedureDone(builder.build());<a name="line.90"></a>
-<span class="sourceLineNo">091</span>        builder.clear();<a 
name="line.91"></a>
-<span class="sourceLineNo">092</span>        tries = 0;<a name="line.92"></a>
-<span class="sourceLineNo">093</span>      } catch (IOException e) {<a 
name="line.93"></a>
-<span class="sourceLineNo">094</span>        boolean pause =<a 
name="line.94"></a>
-<span class="sourceLineNo">095</span>          e instanceof 
ServerNotRunningYetException || e instanceof PleaseHoldException;<a 
name="line.95"></a>
-<span class="sourceLineNo">096</span>        long pauseTime;<a 
name="line.96"></a>
-<span class="sourceLineNo">097</span>        if (pause) {<a name="line.97"></a>
-<span class="sourceLineNo">098</span>          // Do backoff else we flood the 
Master with requests.<a name="line.98"></a>
-<span class="sourceLineNo">099</span>          pauseTime = 
ConnectionUtils.getPauseTime(INIT_PAUSE_TIME_MS, tries);<a name="line.99"></a>
-<span class="sourceLineNo">100</span>        } else {<a name="line.100"></a>
-<span class="sourceLineNo">101</span>          pauseTime = INIT_PAUSE_TIME_MS; 
// Reset.<a name="line.101"></a>
-<span class="sourceLineNo">102</span>        }<a name="line.102"></a>
-<span class="sourceLineNo">103</span>        LOG.info("Failed report procedure 
" + TextFormat.shortDebugString(request) + "; retry (#" +<a name="line.103"></a>
-<span class="sourceLineNo">104</span>          tries + ")" + (pause ? " after 
" + pauseTime + "ms delay (Master is coming online...)."<a name="line.104"></a>
-<span class="sourceLineNo">105</span>            : " immediately."),<a 
name="line.105"></a>
-<span class="sourceLineNo">106</span>          e);<a name="line.106"></a>
-<span class="sourceLineNo">107</span>        Threads.sleep(pauseTime);<a 
name="line.107"></a>
-<span class="sourceLineNo">108</span>        tries++;<a name="line.108"></a>
-<span class="sourceLineNo">109</span>      }<a name="line.109"></a>
-<span class="sourceLineNo">110</span>    }<a name="line.110"></a>
-<span class="sourceLineNo">111</span>  }<a name="line.111"></a>
-<span class="sourceLineNo">112</span>}<a name="line.112"></a>
+<span class="sourceLineNo">060</span>      LOG.debug("Failed to complete 
execution of proc pid={}", procId, error);<a name="line.60"></a>
+<span class="sourceLineNo">061</span>      
builder.setStatus(RemoteProcedureResult.Status.ERROR).setError(<a 
name="line.61"></a>
+<span class="sourceLineNo">062</span>        
ForeignExceptionUtil.toProtoForeignException(server.getServerName().toString(), 
error));<a name="line.62"></a>
+<span class="sourceLineNo">063</span>    } else {<a name="line.63"></a>
+<span class="sourceLineNo">064</span>      LOG.debug("Successfully complete 
execution of proc pid={}", procId);<a name="line.64"></a>
+<span class="sourceLineNo">065</span>      
builder.setStatus(RemoteProcedureResult.Status.SUCCESS);<a name="line.65"></a>
+<span class="sourceLineNo">066</span>    }<a name="line.66"></a>
+<span class="sourceLineNo">067</span>    results.add(builder.build());<a 
name="line.67"></a>
+<span class="sourceLineNo">068</span>  }<a name="line.68"></a>
+<span class="sourceLineNo">069</span><a name="line.69"></a>
+<span class="sourceLineNo">070</span>  @Override<a name="line.70"></a>
+<span class="sourceLineNo">071</span>  public void run() {<a 
name="line.71"></a>
+<span class="sourceLineNo">072</span>    ReportProcedureDoneRequest.Builder 
builder = ReportProcedureDoneRequest.newBuilder();<a name="line.72"></a>
+<span class="sourceLineNo">073</span>    int tries = 0;<a name="line.73"></a>
+<span class="sourceLineNo">074</span>    while (!server.isStopped()) {<a 
name="line.74"></a>
+<span class="sourceLineNo">075</span>      if (builder.getResultCount() == 0) 
{<a name="line.75"></a>
+<span class="sourceLineNo">076</span>        try {<a name="line.76"></a>
+<span class="sourceLineNo">077</span>          
builder.addResult(results.take());<a name="line.77"></a>
+<span class="sourceLineNo">078</span>        } catch (InterruptedException e) 
{<a name="line.78"></a>
+<span class="sourceLineNo">079</span>          
Thread.currentThread().interrupt();<a name="line.79"></a>
+<span class="sourceLineNo">080</span>          continue;<a name="line.80"></a>
+<span class="sourceLineNo">081</span>        }<a name="line.81"></a>
+<span class="sourceLineNo">082</span>      }<a name="line.82"></a>
+<span class="sourceLineNo">083</span>      while (builder.getResultCount() 
&lt; MAX_BATCH) {<a name="line.83"></a>
+<span class="sourceLineNo">084</span>        RemoteProcedureResult result = 
results.poll();<a name="line.84"></a>
+<span class="sourceLineNo">085</span>        if (result == null) {<a 
name="line.85"></a>
+<span class="sourceLineNo">086</span>          break;<a name="line.86"></a>
+<span class="sourceLineNo">087</span>        }<a name="line.87"></a>
+<span class="sourceLineNo">088</span>        builder.addResult(result);<a 
name="line.88"></a>
+<span class="sourceLineNo">089</span>      }<a name="line.89"></a>
+<span class="sourceLineNo">090</span>      ReportProcedureDoneRequest request 
= builder.build();<a name="line.90"></a>
+<span class="sourceLineNo">091</span>      try {<a name="line.91"></a>
+<span class="sourceLineNo">092</span>        
server.reportProcedureDone(builder.build());<a name="line.92"></a>
+<span class="sourceLineNo">093</span>        builder.clear();<a 
name="line.93"></a>
+<span class="sourceLineNo">094</span>        tries = 0;<a name="line.94"></a>
+<span class="sourceLineNo">095</span>      } catch (IOException e) {<a 
name="line.95"></a>
+<span class="sourceLineNo">096</span>        boolean pause =<a 
name="line.96"></a>
+<span class="sourceLineNo">097</span>          e instanceof 
ServerNotRunningYetException || e instanceof PleaseHoldException;<a 
name="line.97"></a>
+<span class="sourceLineNo">098</span>        long pauseTime;<a 
name="line.98"></a>
+<span class="sourceLineNo">099</span>        if (pause) {<a name="line.99"></a>
+<span class="sourceLineNo">100</span>          // Do backoff else we flood the 
Master with requests.<a name="line.100"></a>
+<span class="sourceLineNo">101</span>          pauseTime = 
ConnectionUtils.getPauseTime(INIT_PAUSE_TIME_MS, tries);<a name="line.101"></a>
+<span class="sourceLineNo">102</span>        } else {<a name="line.102"></a>
+<span class="sourceLineNo">103</span>          pauseTime = INIT_PAUSE_TIME_MS; 
// Reset.<a name="line.103"></a>
+<span class="sourceLineNo">104</span>        }<a name="line.104"></a>
+<span class="sourceLineNo">105</span>        LOG.info("Failed report procedure 
" + TextFormat.shortDebugString(request) + "; retry (#" +<a name="line.105"></a>
+<span class="sourceLineNo">106</span>          tries + ")" + (pause ? " after 
" + pauseTime + "ms delay (Master is coming online...)."<a name="line.106"></a>
+<span class="sourceLineNo">107</span>            : " immediately."),<a 
name="line.107"></a>
+<span class="sourceLineNo">108</span>          e);<a name="line.108"></a>
+<span class="sourceLineNo">109</span>        Threads.sleep(pauseTime);<a 
name="line.109"></a>
+<span class="sourceLineNo">110</span>        tries++;<a name="line.110"></a>
+<span class="sourceLineNo">111</span>      }<a name="line.111"></a>
+<span class="sourceLineNo">112</span>    }<a name="line.112"></a>
+<span class="sourceLineNo">113</span>  }<a name="line.113"></a>
+<span class="sourceLineNo">114</span>}<a name="line.114"></a>
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/handler/RSProcedureHandler.html
----------------------------------------------------------------------
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/handler/RSProcedureHandler.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/handler/RSProcedureHandler.html
index 43e64ae..3391d7d 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/handler/RSProcedureHandler.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/regionserver/handler/RSProcedureHandler.html
@@ -50,16 +50,17 @@
 <span class="sourceLineNo">042</span><a name="line.42"></a>
 <span class="sourceLineNo">043</span>  @Override<a name="line.43"></a>
 <span class="sourceLineNo">044</span>  public void process() {<a 
name="line.44"></a>
-<span class="sourceLineNo">045</span>    Exception error = null;<a 
name="line.45"></a>
+<span class="sourceLineNo">045</span>    Throwable error = null;<a 
name="line.45"></a>
 <span class="sourceLineNo">046</span>    try {<a name="line.46"></a>
 <span class="sourceLineNo">047</span>      callable.call();<a 
name="line.47"></a>
-<span class="sourceLineNo">048</span>    } catch (Exception e) {<a 
name="line.48"></a>
-<span class="sourceLineNo">049</span>      LOG.error("Catch exception when 
call RSProcedureCallable: ", e);<a name="line.49"></a>
-<span class="sourceLineNo">050</span>      error = e;<a name="line.50"></a>
-<span class="sourceLineNo">051</span>    }<a name="line.51"></a>
-<span class="sourceLineNo">052</span>    ((HRegionServer) 
server).remoteProcedureComplete(procId, error);<a name="line.52"></a>
-<span class="sourceLineNo">053</span>  }<a name="line.53"></a>
-<span class="sourceLineNo">054</span>}<a name="line.54"></a>
+<span class="sourceLineNo">048</span>    } catch (Throwable t) {<a 
name="line.48"></a>
+<span class="sourceLineNo">049</span>      LOG.error("Error when call 
RSProcedureCallable: ", t);<a name="line.49"></a>
+<span class="sourceLineNo">050</span>      error = t;<a name="line.50"></a>
+<span class="sourceLineNo">051</span>    } finally {<a name="line.51"></a>
+<span class="sourceLineNo">052</span>      ((HRegionServer) 
server).remoteProcedureComplete(procId, error);<a name="line.52"></a>
+<span class="sourceLineNo">053</span>    }<a name="line.53"></a>
+<span class="sourceLineNo">054</span>  }<a name="line.54"></a>
+<span class="sourceLineNo">055</span>}<a name="line.55"></a>
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/downloads.html
----------------------------------------------------------------------
diff --git a/downloads.html b/downloads.html
index 405ed9e..4dcc071 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Apache HBase Downloads</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -461,7 +461,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-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/export_control.html
----------------------------------------------------------------------
diff --git a/export_control.html b/export_control.html
index e9ebf27..3b80ae1 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; 
       Export Control
@@ -341,7 +341,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-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/index.html
----------------------------------------------------------------------
diff --git a/index.html b/index.html
index afa0cab..7e0b3b4 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Apache HBase™ Home</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -421,7 +421,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-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/integration.html
----------------------------------------------------------------------
diff --git a/integration.html b/integration.html
index e19c82b..9b59d00 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; CI Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -301,7 +301,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/issue-tracking.html
----------------------------------------------------------------------
diff --git a/issue-tracking.html b/issue-tracking.html
index 0d73a29..b7561a1 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Issue Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -298,7 +298,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/license.html
----------------------------------------------------------------------
diff --git a/license.html b/license.html
index e37973b..a4dd8cf 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Licenses</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -501,7 +501,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/mail-lists.html
----------------------------------------------------------------------
diff --git a/mail-lists.html b/mail-lists.html
index 824acce..48f01dc 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Mailing Lists</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -351,7 +351,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/metrics.html
----------------------------------------------------------------------
diff --git a/metrics.html b/metrics.html
index 9ac6a03..bdafd10 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013;  
       Apache HBase (TM) Metrics
@@ -469,7 +469,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-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/old_news.html
----------------------------------------------------------------------
diff --git a/old_news.html b/old_news.html
index 6d40d54..59892d9 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; 
       Old Apache HBase (TM) News
@@ -450,7 +450,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-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/plugin-management.html
----------------------------------------------------------------------
diff --git a/plugin-management.html b/plugin-management.html
index f770311..838e9a5 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Plugin Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -450,7 +450,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/plugins.html
----------------------------------------------------------------------
diff --git a/plugins.html b/plugins.html
index d577701..a6ded04 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Plugins</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -381,7 +381,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/poweredbyhbase.html
----------------------------------------------------------------------
diff --git a/poweredbyhbase.html b/poweredbyhbase.html
index acf0295..d96471c 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <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.4-HBase.min.css" 
/>
@@ -779,7 +779,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-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/project-info.html
----------------------------------------------------------------------
diff --git a/project-info.html b/project-info.html
index daefb03..6808765 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Information</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -345,7 +345,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/project-reports.html
----------------------------------------------------------------------
diff --git a/project-reports.html b/project-reports.html
index 7320e39..4968aee 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Generated Reports</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -315,7 +315,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/project-summary.html
----------------------------------------------------------------------
diff --git a/project-summary.html b/project-summary.html
index c57698f..2c75d96 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Summary</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-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-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/pseudo-distributed.html
----------------------------------------------------------------------
diff --git a/pseudo-distributed.html b/pseudo-distributed.html
index 3de822f..ea947f0 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013;  
 Running Apache HBase (TM) in pseudo-distributed mode
@@ -318,7 +318,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-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/replication.html
----------------------------------------------------------------------
diff --git a/replication.html b/replication.html
index 15a9f15..ecbb7c4 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; 
       Apache HBase (TM) Replication
@@ -313,7 +313,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-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/resources.html
----------------------------------------------------------------------
diff --git a/resources.html b/resources.html
index 1ca386e..9dd8e10 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <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.4-HBase.min.css" 
/>
@@ -341,7 +341,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-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/source-repository.html
----------------------------------------------------------------------
diff --git a/source-repository.html b/source-repository.html
index ac09991..15e6ed5 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Source Code Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -309,7 +309,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/sponsors.html
----------------------------------------------------------------------
diff --git a/sponsors.html b/sponsors.html
index ee0cd07..7528e53 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Apache HBase™ Sponsors</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -343,7 +343,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-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/supportingprojects.html
----------------------------------------------------------------------
diff --git a/supportingprojects.html b/supportingprojects.html
index aaf84bb..56a25a1 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Supporting Projects</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -530,7 +530,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-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1c87639a/team-list.html
----------------------------------------------------------------------
diff --git a/team-list.html b/team-list.html
index e844e6d..4caf491 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="20181115" />
+    <meta name="Date-Revision-yyyymmdd" content="20181116" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Team</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -776,7 +776,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-15</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-16</li>
             </p>
                 </div>
 

Reply via email to