Skip to content

Commit

Permalink
HADOOP-19189. Viraj's feedback
Browse files Browse the repository at this point in the history
Change-Id: Iaf8263813940597b8b7d8da0db991018a2f35ca7
  • Loading branch information
steveloughran committed Jun 7, 2024
1 parent 3b7e5ca commit 49d52ab
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,8 @@ public void setup() throws Exception {
maybeSetCommitterName(jobConf, jobCommitterName);
tContext = new TaskAttemptContextImpl(jobConf, taskAttempt0);

LOG.info("Filesystem Committer='{}'; task='{}'",
LOG.info("{}: Filesystem Committer='{}'; task='{}'",
description,
fsConf.get(FS_S3A_COMMITTER_NAME),
jobConf.get(FS_S3A_COMMITTER_NAME));
}
Expand Down Expand Up @@ -232,8 +233,7 @@ private void assertFactoryCreatesExpectedCommitter(
expected,
createCommitter().getClass());
} else {
intercept(PathCommitException.class, () ->
createCommitter());
intercept(PathCommitException.class, this::createCommitter);
}
}

Expand Down

0 comments on commit 49d52ab

Please sign in to comment.