busbey commented on a change in pull request #912: HBASE-23380: General Cleanup 
of FSUtil
URL: https://github.com/apache/hbase/pull/912#discussion_r357663478
 
 

 ##########
 File path: hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java
 ##########
 @@ -227,12 +232,8 @@ public static FSDataOutputStream create(Configuration 
conf, FileSystem fs, Path
           throw new IOException(ite.getCause());
         } catch (NoSuchMethodException e) {
           LOG.debug("DFS Client does not support most favored nodes create; 
using default create");
-          if (LOG.isTraceEnabled()) LOG.trace("Ignoring; use default create", 
e);
-        } catch (IllegalArgumentException e) {
-          LOG.debug("Ignoring (most likely Reflection related exception) " + 
e);
-        } catch (SecurityException e) {
-          LOG.debug("Ignoring (most likely Reflection related exception) " + 
e);
-        } catch (IllegalAccessException e) {
+          LOG.trace("Ignoring; use default create", e);
+        } catch (IllegalArgumentException | SecurityException |  
IllegalAccessException e) {
           LOG.debug("Ignoring (most likely Reflection related exception) " + 
e);
 
 Review comment:
   nit: while we're here could we pass this exception rather than coercing it 
to a string?

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