Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -321,9 +321,11 @@ void openInternalUnsafe(boolean isAsync, LogHelper console) throws TezException,
final Map<String, LocalResource> commonLocalResources = new HashMap<>();
final boolean llapMode = "llap".equalsIgnoreCase(HiveConf.getVar(conf, HiveConf.ConfVars.HIVE_EXECUTION_MODE));

commonLocalResources.put(DagUtils.getBaseName(appJarLr), appJarLr);
//commonLocalResources.put(DagUtils.getBaseName(appJarLr), appJarLr);
LOG.info("SKIP ADDING RESOURCE FOR TESTING: {}", appJarLr);
for (LocalResource lr : this.resources.localizedResources) {
commonLocalResources.put(DagUtils.getBaseName(lr), lr);
LOG.info("SKIP ADDING RESOURCE FOR TESTING: {}", lr);
//commonLocalResources.put(DagUtils.getBaseName(lr), lr);
}

if (llapMode) {
Expand Down