Repository: hadoop Updated Branches: refs/heads/branch-3.0 53ce37ad2 -> 7278566f2
YARN-8129. Improve error message for invalid value in fields attribute. Contributed by Abhishek Modi. (cherry picked from commit d3fef7a5c5b83d27e87b5e49928254a7d1b935e5) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/7278566f Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/7278566f Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/7278566f Branch: refs/heads/branch-3.0 Commit: 7278566f27391c308b8f81e859487c8c6634e1da Parents: 53ce37a Author: Rohith Sharma K S <[email protected]> Authored: Tue Aug 21 11:58:07 2018 +0530 Committer: Rohith Sharma K S <[email protected]> Committed: Tue Aug 21 12:11:32 2018 +0530 ---------------------------------------------------------------------- .../timelineservice/reader/TimelineReaderWebServicesUtils.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/7278566f/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/reader/TimelineReaderWebServicesUtils.java ---------------------------------------------------------------------- diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/reader/TimelineReaderWebServicesUtils.java b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/reader/TimelineReaderWebServicesUtils.java index f83c1ac..ae19b21 100644 --- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/reader/TimelineReaderWebServicesUtils.java +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/reader/TimelineReaderWebServicesUtils.java @@ -214,7 +214,11 @@ public final class TimelineReaderWebServicesUtils { String[] strs = str.split(delimiter); EnumSet<Field> fieldList = EnumSet.noneOf(Field.class); for (String s : strs) { - fieldList.add(Field.valueOf(s.trim().toUpperCase())); + try { + fieldList.add(Field.valueOf(s.trim().toUpperCase())); + } catch (IllegalArgumentException e) { + throw new IllegalArgumentException(s + " is not a valid field."); + } } return fieldList; } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
