Author: mbautin Date: Fri Feb 17 01:56:19 2012 New Revision: 1245290 URL: http://svn.apache.org/viewvc?rev=1245290&view=rev Log: [HBASE-5411] Follow-up: unbreak HBase 89-fb build
Summary: The original 89-fb commit of HBASE-5411 (D409330) broke the build, and this is a follow-up two-line fix. Test Plan: Build, run unit tests Reviewers: kannan, schen Reviewed By: kannan CC: hbase-eng@lists, davejwatson Differential Revision: https://phabricator.fb.com/D410135 Revert Plan: OK Modified: hbase/branches/0.89-fb/src/main/java/org/apache/hadoop/hbase/thrift/ThriftServer.java Modified: hbase/branches/0.89-fb/src/main/java/org/apache/hadoop/hbase/thrift/ThriftServer.java URL: http://svn.apache.org/viewvc/hbase/branches/0.89-fb/src/main/java/org/apache/hadoop/hbase/thrift/ThriftServer.java?rev=1245290&r1=1245289&r2=1245290&view=diff ============================================================================== --- hbase/branches/0.89-fb/src/main/java/org/apache/hadoop/hbase/thrift/ThriftServer.java (original) +++ hbase/branches/0.89-fb/src/main/java/org/apache/hadoop/hbase/thrift/ThriftServer.java Fri Feb 17 01:56:19 2012 @@ -205,7 +205,7 @@ public class ThriftServer { } /** Create a handler without metrics. Used by unit test only */ - HBaseHandler(final Configuration c) throws IOException { + protected HBaseHandler(final Configuration c) throws IOException { this(c, null); }
