Repository: hadoop Updated Branches: refs/heads/HDFS-7285 b3e2fc1ed -> 455b89d06
HADOOP-11782 Correct two thrown messages in ECSchema class. Contributed by Xinwei Qin Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/2f9119a8 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/2f9119a8 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/2f9119a8 Branch: refs/heads/HDFS-7285 Commit: 2f9119a8b1e73fa8c1efa9f11e446a91ea01b449 Parents: b3e2fc1 Author: Kai Zheng <[email protected]> Authored: Thu Apr 2 05:12:35 2015 +0800 Committer: Kai Zheng <[email protected]> Committed: Thu Apr 2 05:12:35 2015 +0800 ---------------------------------------------------------------------- .../src/main/java/org/apache/hadoop/io/erasurecode/ECSchema.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/2f9119a8/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/erasurecode/ECSchema.java ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/erasurecode/ECSchema.java b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/erasurecode/ECSchema.java index 8dc3f45..27be00e 100644 --- a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/erasurecode/ECSchema.java +++ b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/erasurecode/ECSchema.java @@ -64,7 +64,7 @@ public class ECSchema { } } catch (NumberFormatException e) { throw new IllegalArgumentException("Option value " + - options.get(CHUNK_SIZE_KEY) + " for " + CHUNK_SIZE_KEY + + options.get(NUM_DATA_UNITS_KEY) + " for " + NUM_DATA_UNITS_KEY + " is found. It should be an integer"); } @@ -74,7 +74,7 @@ public class ECSchema { } } catch (NumberFormatException e) { throw new IllegalArgumentException("Option value " + - options.get(CHUNK_SIZE_KEY) + " for " + CHUNK_SIZE_KEY + + options.get(NUM_PARITY_UNITS_KEY) + " for " + NUM_PARITY_UNITS_KEY + " is found. It should be an integer"); }
