HADOOP-8499. Lower min.user.id to 500 for the tests. Contributed Colin Patrick McCabe

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1361439 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eli Collins 2012-07-13 23:05:35 +00:00
parent 8155269a0a
commit 67c853f068
2 changed files with 4 additions and 1 deletions

View File

@ -92,6 +92,9 @@ Release 2.0.1-alpha - UNRELEASED
MAPREDUCE-4441. Fix build issue caused by MR-3451 (kkambatl via tucu)
HADOOP-8499. Lower min.user.id to 500 for the tests.
(Colin Patrick McCabe via eli)
Release 2.0.0-alpha - 05-23-2012
INCOMPATIBLE CHANGES

View File

@ -97,7 +97,7 @@ int write_config_file(char *file_name) {
return EXIT_FAILURE;
}
fprintf(file, "banned.users=bannedUser\n");
fprintf(file, "min.user.id=1000\n");
fprintf(file, "min.user.id=500\n");
fclose(file);
return 0;
}