HADOOP-17375. Fix the error of TestDynamometerInfra. (#2471)
Signed-off-by: Akira Ajisaka <aajisaka@apache.org>
This commit is contained in:
parent
f40e3eb059
commit
207210263a
|
@ -38,4 +38,9 @@ public class AllowAllImpersonationProvider extends Configured
|
|||
// Do nothing
|
||||
}
|
||||
|
||||
// Although this API was removed from the interface by HADOOP-17367, we need
|
||||
// to keep it here because TestDynamometerInfra uses an old hadoop binary.
|
||||
public void authorize(UserGroupInformation user, String remoteAddress) {
|
||||
// Do nothing
|
||||
}
|
||||
}
|
||||
|
|
|
@ -122,7 +122,7 @@ public class TestDynamometerInfra {
|
|||
private static final String HADOOP_BIN_PATH_KEY = "dyno.hadoop.bin.path";
|
||||
private static final String HADOOP_BIN_VERSION_KEY =
|
||||
"dyno.hadoop.bin.version";
|
||||
private static final String HADOOP_BIN_VERSION_DEFAULT = "3.1.3";
|
||||
private static final String HADOOP_BIN_VERSION_DEFAULT = "3.1.4";
|
||||
private static final String FSIMAGE_FILENAME = "fsimage_0000000000000061740";
|
||||
private static final String VERSION_FILENAME = "VERSION";
|
||||
|
||||
|
|
Loading…
Reference in New Issue