kevinrr888 commented on code in PR #5350:
URL: https://github.com/apache/accumulo/pull/5350#discussion_r1968049475


##########
server/base/src/main/java/org/apache/accumulo/server/init/Initialize.java:
##########
@@ -543,7 +543,7 @@ public void execute(final String[] args) {
           success = doInit(zk.asReaderWriter(), opts, fs, initConfig);
         }
       }
-    } catch (IOException e) {
+    } catch (IOException | InterruptedException | KeeperException e) {
       log.error("Problem trying to get Volume configuration", e);
       success = false;

Review Comment:
   It seems like new catch blocks should be added to handle these new 
exceptions from `doInit`



-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to