tez-plugins/tez-yarn-timeline-history-with-fs/src/main/java/org/apache/tez/dag/history/logging/ats/ATSV15HistoryLoggingService.java [462:472]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private String createSessionDomain() throws IOException, HistoryACLPolicyException {
    if (historyACLPolicyManager == null) {
      return null;
    }
    Map<String, String> domainInfo = historyACLPolicyManager.setupSessionACLs(getConfig(),
        appContext.getApplicationID());
    if (domainInfo != null) {
      return domainInfo.get(TezConfiguration.YARN_ATS_ACL_SESSION_DOMAIN_ID);
    }
    return null;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tez-plugins/tez-yarn-timeline-history/src/main/java/org/apache/tez/dag/history/logging/ats/ATSHistoryLoggingService.java [422:432]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private String createSessionDomain() throws HistoryACLPolicyException, IOException {
    if (historyACLPolicyManager == null) {
      return null;
    }
    Map<String, String> domainInfo = historyACLPolicyManager.setupSessionACLs(getConfig(),
        appContext.getApplicationID());
    if (domainInfo != null) {
      return domainInfo.get(TezConfiguration.YARN_ATS_ACL_SESSION_DOMAIN_ID);
    }
    return null;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



