keith-turner commented on a change in pull request #1057: restore exception 
handling #949 #1005
URL: https://github.com/apache/accumulo/pull/1057#discussion_r269272026
 
 

 ##########
 File path: 
server/tserver/src/main/java/org/apache/accumulo/tserver/log/TabletServerLogger.java
 ##########
 @@ -302,6 +302,12 @@ public void run() {
               }
             }
 
+            try {
+              nextLog.offer(t, 12, TimeUnit.HOURS);
+            } catch (InterruptedException ex) {
+              // ignore
+            }
+
 
 Review comment:
   The code was restructured from one try/catch block into two try/catch 
blocks.  The original try/catch had this, but the two new ones did not.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to