rdblue commented on a change in pull request #1979: URL: https://github.com/apache/iceberg/pull/1979#discussion_r553052355
########## File path: core/src/main/java/org/apache/iceberg/hadoop/HadoopCatalog.java ########## @@ -129,6 +136,8 @@ public void initialize(String name, Map<String, String> properties) { this.fs = Util.getFs(new Path(warehouseLocation), conf); String fileIOImpl = properties.get(CatalogProperties.FILE_IO_IMPL); + this.suppressIOException = Boolean.parseBoolean(properties.get(CatalogProperties.HADOOP_SUPPRESS_IOEXCEPTION)); + Review comment: Can you move this to after `fileIO` is set? The line above and that line are related so we shouldn't separate them. ---------------------------------------------------------------- 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