Revert "HBASE-14583 Enabled client-side metrics by default"

Causes TestShell to hang. Reverting for now till we figure why.

This reverts commit c7efd14726.
This commit is contained in:
stack 2015-10-10 13:18:48 -07:00
parent 1b66ea71b6
commit e37e72c160
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ class ConnectionImplementation implements ClusterConnection, Closeable {
this.rpcCallerFactory = RpcRetryingCallerFactory.instantiate(conf, interceptor, this.stats);
this.backoffPolicy = ClientBackoffPolicyFactory.create(conf);
this.asyncProcess = createAsyncProcess(this.conf);
if (conf.getBoolean(CLIENT_SIDE_METRICS_ENABLED_KEY, true)) {
if (conf.getBoolean(CLIENT_SIDE_METRICS_ENABLED_KEY, false)) {
this.metrics = new MetricsConnection(this);
} else {
this.metrics = null;