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:
parent
8155269a0a
commit
67c853f068
|
@ -92,6 +92,9 @@ Release 2.0.1-alpha - UNRELEASED
|
||||||
|
|
||||||
MAPREDUCE-4441. Fix build issue caused by MR-3451 (kkambatl via tucu)
|
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
|
Release 2.0.0-alpha - 05-23-2012
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -97,7 +97,7 @@ int write_config_file(char *file_name) {
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
fprintf(file, "banned.users=bannedUser\n");
|
fprintf(file, "banned.users=bannedUser\n");
|
||||||
fprintf(file, "min.user.id=1000\n");
|
fprintf(file, "min.user.id=500\n");
|
||||||
fclose(file);
|
fclose(file);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue