Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1333,8 +1333,14 @@ public void validate() {
+ " event.timeout, which is set to " + eventTimeout);
}
if (reconstructionCommandWeight <= 0) {
throw new IllegalArgumentException("reconstructionCommandWeight is"
+ " set to " + reconstructionCommandWeight + " and must be > 0");
throw new IllegalArgumentException("datanode.reconstruction.weight: "
+ reconstructionCommandWeight + " must be > 0");
}
if (datanodeReplicationLimit < reconstructionCommandWeight) {
throw new IllegalArgumentException("datanode.replication.limit: "
+ datanodeReplicationLimit
+ " must be >= datanode.reconstruction.weight: "
+ reconstructionCommandWeight);
}
if (inflightReplicationLimitFactor < 0) {
throw new IllegalArgumentException(
Expand Down