Switch the default registry to ZK based
In branch-2 we want to retain the ZK based registry as the default.
This commit is contained in:
parent
5848b7d835
commit
558ee079fd
|
@ -36,7 +36,7 @@ final class ConnectionRegistryFactory {
|
|||
*/
|
||||
static ConnectionRegistry getRegistry(Configuration conf) {
|
||||
Class<? extends ConnectionRegistry> clazz = conf.getClass(
|
||||
CLIENT_CONNECTION_REGISTRY_IMPL_CONF_KEY, MasterRegistry.class,
|
||||
CLIENT_CONNECTION_REGISTRY_IMPL_CONF_KEY, ZKConnectionRegistry.class,
|
||||
ConnectionRegistry.class);
|
||||
return ReflectionUtils.newInstance(clazz, conf);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue