HDDS-2239. Fix TestOzoneFsHAUrls (#1600)
This commit is contained in:
parent
1a77a15fe4
commit
9685a6c0e5
|
@ -91,9 +91,11 @@ public class BasicOzoneClientAdapterImpl implements OzoneClientAdapter {
|
|||
ClassLoader contextClassLoader =
|
||||
Thread.currentThread().getContextClassLoader();
|
||||
Thread.currentThread().setContextClassLoader(null);
|
||||
OzoneConfiguration conf = new OzoneConfiguration();
|
||||
try {
|
||||
return new OzoneConfiguration();
|
||||
} finally {
|
||||
Thread.currentThread().setContextClassLoader(contextClassLoader);
|
||||
return conf;
|
||||
}
|
||||
}
|
||||
|
||||
public BasicOzoneClientAdapterImpl(OzoneConfiguration conf, String volumeStr,
|
||||
|
@ -109,6 +111,8 @@ public class BasicOzoneClientAdapterImpl implements OzoneClientAdapter {
|
|||
ClassLoader contextClassLoader =
|
||||
Thread.currentThread().getContextClassLoader();
|
||||
Thread.currentThread().setContextClassLoader(null);
|
||||
|
||||
try {
|
||||
OzoneConfiguration conf = OzoneConfiguration.of(hadoopConf);
|
||||
|
||||
if (omHost == null && OmUtils.isServiceIdsDefined(conf)) {
|
||||
|
@ -126,8 +130,8 @@ public class BasicOzoneClientAdapterImpl implements OzoneClientAdapter {
|
|||
if (OmUtils.isOmHAServiceId(conf, omHost)) {
|
||||
// If omHost is a service id, it shouldn't use a port
|
||||
throw new IllegalArgumentException("Port " + omPort +
|
||||
" specified in URI but host '" + omHost + "' is "
|
||||
+ "a logical (HA) OzoneManager and does not use port information.");
|
||||
" specified in URI but host '" + omHost + "' is a "
|
||||
+ "logical (HA) OzoneManager and does not use port information.");
|
||||
}
|
||||
} else {
|
||||
// When port number is not specified, read it from config
|
||||
|
@ -140,7 +144,6 @@ public class BasicOzoneClientAdapterImpl implements OzoneClientAdapter {
|
|||
this.securityEnabled = true;
|
||||
}
|
||||
|
||||
try {
|
||||
String replicationTypeConf =
|
||||
conf.get(OzoneConfigKeys.OZONE_REPLICATION_TYPE,
|
||||
OzoneConfigKeys.OZONE_REPLICATION_TYPE_DEFAULT);
|
||||
|
|
Loading…
Reference in New Issue