Skip to content

Commit

Permalink
post-rebase fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
abstractdog committed Oct 21, 2022
1 parent 717d739 commit 42e6bd1
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
import org.apache.tez.runtime.common.objectregistry.ObjectRegistryImpl;
import org.apache.tez.runtime.internals.api.TaskReporterInterface;
import org.apache.tez.util.LoggingUtils;

import org.apache.tez.util.TezRuntimeShutdownHandler;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down Expand Up @@ -252,10 +253,10 @@ public ContainerExecutionResult run() throws IOException, InterruptedException,
TezTaskRunner2.mergeTaskSpecConfToConf(containerTask.getTaskSpec(), copy);

LoggingUtils.initLoggingContext(mdcContext, copy,
attemptId.getTaskID().getVertexID().getDAGId().toString(), attemptId.toString());
attemptId.getTaskID().getVertexID().getDAGID().toString(), attemptId.toString());
} else {
LoggingUtils.initLoggingContext(mdcContext, defaultConf,
attemptId.getTaskID().getVertexID().getDAGId().toString(), attemptId.toString());
attemptId.getTaskID().getVertexID().getDAGID().toString(), attemptId.toString());
}

TezCommonUtils.logCredentials(LOG, containerTask.getCredentials(), "containerTask");
Expand Down

0 comments on commit 42e6bd1

Please sign in to comment.