You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by cw...@apache.org on 2017/04/09 10:11:31 UTC

hive git commit: HIVE-16393: Fix visibility of CodahaleReporter interface (Sunitha Beeram via Carl Steinbach)

Repository: hive
Updated Branches:
  refs/heads/master 7629dbd5b -> c3aba153c


HIVE-16393: Fix visibility of CodahaleReporter interface (Sunitha Beeram via Carl Steinbach)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/c3aba153
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/c3aba153
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/c3aba153

Branch: refs/heads/master
Commit: c3aba153cb92d71d41554a0714a6694980f9b363
Parents: 7629dbd
Author: Carl Steinbach <cw...@apache.org>
Authored: Sat Apr 8 23:42:01 2017 -0700
Committer: Carl Steinbach <cw...@apache.org>
Committed: Sat Apr 8 23:42:01 2017 -0700

----------------------------------------------------------------------
 .../hadoop/hive/common/metrics/metrics2/CodahaleReporter.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/c3aba153/common/src/java/org/apache/hadoop/hive/common/metrics/metrics2/CodahaleReporter.java
----------------------------------------------------------------------
diff --git a/common/src/java/org/apache/hadoop/hive/common/metrics/metrics2/CodahaleReporter.java b/common/src/java/org/apache/hadoop/hive/common/metrics/metrics2/CodahaleReporter.java
index ba4d8e4..9424f28 100644
--- a/common/src/java/org/apache/hadoop/hive/common/metrics/metrics2/CodahaleReporter.java
+++ b/common/src/java/org/apache/hadoop/hive/common/metrics/metrics2/CodahaleReporter.java
@@ -20,7 +20,7 @@ package org.apache.hadoop.hive.common.metrics.metrics2;
 import com.codahale.metrics.Reporter;
 import java.io.Closeable;
 
-interface CodahaleReporter extends Closeable, Reporter {
+public interface CodahaleReporter extends Closeable, Reporter {
 
   /**
    * Start the reporter.