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/trunk@1361438 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
27b5f5a0e6
commit
bf34f62e43
|
@ -230,6 +230,9 @@ Branch-2 ( Unreleased changes )
|
|||
|
||||
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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue