You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by an...@apache.org on 2014/09/13 16:17:51 UTC

git commit: HBASE-11647 addendum to fix compile issues.

Repository: hbase
Updated Branches:
  refs/heads/hbase-11339 0c86d83e1 -> e5d385077


HBASE-11647 addendum to fix compile issues.


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

Branch: refs/heads/hbase-11339
Commit: e5d3850776174a63ddc2e0b5ead58409ca7c8706
Parents: 0c86d83
Author: anoopsjohn <an...@gmail.com>
Authored: Sat Sep 13 19:47:07 2014 +0530
Committer: anoopsjohn <an...@gmail.com>
Committed: Sat Sep 13 19:47:07 2014 +0530

----------------------------------------------------------------------
 .../org/apache/hadoop/hbase/IntegrationTestIngestWithMOB.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/e5d38507/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestIngestWithMOB.java
----------------------------------------------------------------------
diff --git a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestIngestWithMOB.java b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestIngestWithMOB.java
index 4697eed..b021cc4 100644
--- a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestIngestWithMOB.java
+++ b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestIngestWithMOB.java
@@ -60,7 +60,7 @@ public class IntegrationTestIngestWithMOB extends IntegrationTestIngest {
   protected String[] getArgsForLoadTestToolInitTable() {
     List<String> args = new ArrayList<String>();
     args.add("-tn");
-    args.add(getTablename());
+    args.add(getTablename().getNameAsString());
     // pass all remaining args from conf with keys <test class name>.<load test tool arg>
     String clazz = this.getClass().getSimpleName();
     for (String arg : LOAD_TEST_TOOL_MOB_INIT_ARGS) {
@@ -104,7 +104,7 @@ public class IntegrationTestIngestWithMOB extends IntegrationTestIngest {
   protected void initTable() throws IOException {
     super.initTable();
 
-    byte[] tableName = getTablename().getBytes();
+    byte[] tableName = getTablename().getName();
     HBaseAdmin admin = new HBaseAdmin(conf);
     HTableDescriptor tableDesc = admin.getTableDescriptor(tableName);
     LOG.info("Disabling table " + getTablename());