coordinator/src/main/java/org/apache/uniffle/coordinator/access/checker/AccessCandidatesChecker.java [156:164]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private String loadFileContent() {
    String content = null;
    try (FSDataInputStream in = fileSystem.open(path)) {
      content = IOUtils.toString(in, StandardCharsets.UTF_8);
    } catch (IOException e) {
      LOG.error("Fail to load content from {}", path.toUri().toString());
    }
    return content;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



coordinator/src/main/java/org/apache/uniffle/coordinator/ClientConfManager.java [139:147]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private String loadClientConfContent() {
    String content = null;
    try (FSDataInputStream in = fileSystem.open(path)) {
      content = IOUtils.toString(in, StandardCharsets.UTF_8);
    } catch (IOException e) {
      LOG.error("Fail to load content from {}", path.toUri().toString());
    }
    return content;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



