MAPREDUCE-6940. Copy-paste error in the TaskAttemptUnsuccessfulCompletionEvent constructor. Contributed by Oleg Danilov

This commit is contained in:
Jason Lowe 2017-08-16 16:34:06 -05:00
parent de462da04e
commit 0acc5e0036

View File

@ -129,7 +129,7 @@ public class TaskAttemptUnsuccessfulCompletionEvent implements HistoryEvent {
String hostname, int port, String rackName, String hostname, int port, String rackName,
String error, int[][] allSplits) { String error, int[][] allSplits) {
this(id, taskType, status, finishTime, hostname, port, this(id, taskType, status, finishTime, hostname, port,
rackName, error, EMPTY_COUNTERS, null); rackName, error, EMPTY_COUNTERS, allSplits);
} }
TaskAttemptUnsuccessfulCompletionEvent() {} TaskAttemptUnsuccessfulCompletionEvent() {}