rdblue commented on a change in pull request #1979: URL: https://github.com/apache/iceberg/pull/1979#discussion_r553052558
########## File path: core/src/main/java/org/apache/iceberg/hadoop/HadoopCatalog.java ########## @@ -158,6 +167,44 @@ public String name() { return catalogName; } + private boolean shouldSuppressIOException(IOException ioException) { + String name = ioException.getClass().getName(); + return suppressIOException && name.startsWith("org.apache.hadoop.fs.azurebfs"); Review comment: I would really prefer if this were more specific and looked at the exception message as well to ensure the error is a permissions or ACL problem. ---------------------------------------------------------------- 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 --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org