YARN-3149. Fix typo in message for invalid application id. Contributed

by Bibin A Chundatt.

(cherry picked from commit b77ff37686)
This commit is contained in:
Xuan 2015-02-05 15:13:57 -08:00
parent 46a2027226
commit 096ba583fa
2 changed files with 4 additions and 1 deletions

View File

@ -454,6 +454,9 @@ Release 2.7.0 - UNRELEASED
YARN-3101. In Fair Scheduler, fix canceling of reservations for exceeding
max share (Anubhav Dhoot via Sandy Ryza)
YARN-3149. Fix typo in message for invalid application id.
(Bibin A Chundatt via xgong)
Release 2.6.0 - 2014-11-18
INCOMPATIBLE CHANGES

View File

@ -204,7 +204,7 @@ public class ConverterUtils {
try {
return toApplicationId(it);
} catch (NumberFormatException n) {
throw new IllegalArgumentException("Invalid AppAttemptId: "
throw new IllegalArgumentException("Invalid ApplicationId: "
+ appIdStr, n);
}
}