You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by bu...@apache.org on 2014/04/23 00:42:03 UTC

[2/3] git commit: ACCUMULO-2654 Remove debug information that only works on Hadoop 2

ACCUMULO-2654 Remove debug information that only works on Hadoop 2


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

Branch: refs/heads/master
Commit: 5d82796040dc17075afa351c0c3b855c6c11aaa8
Parents: fbbe472
Author: Sean Busbey <bu...@cloudera.com>
Authored: Tue Apr 22 17:34:23 2014 -0500
Committer: Sean Busbey <bu...@cloudera.com>
Committed: Tue Apr 22 17:34:23 2014 -0500

----------------------------------------------------------------------
 .../test/functional/RecoveryWithEmptyRFileIT.java         | 10 ----------
 1 file changed, 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/5d827960/test/src/test/java/org/apache/accumulo/test/functional/RecoveryWithEmptyRFileIT.java
----------------------------------------------------------------------
diff --git a/test/src/test/java/org/apache/accumulo/test/functional/RecoveryWithEmptyRFileIT.java b/test/src/test/java/org/apache/accumulo/test/functional/RecoveryWithEmptyRFileIT.java
index abe6950..ea68482 100644
--- a/test/src/test/java/org/apache/accumulo/test/functional/RecoveryWithEmptyRFileIT.java
+++ b/test/src/test/java/org/apache/accumulo/test/functional/RecoveryWithEmptyRFileIT.java
@@ -53,8 +53,6 @@ import org.apache.accumulo.test.TestIngest;
 import org.apache.accumulo.test.TestMultiTableIngest;
 import org.apache.accumulo.test.VerifyIngest;
 import org.apache.hadoop.conf.Configuration;
-import org.apache.hadoop.fs.RemoteIterator;
-import org.apache.hadoop.fs.LocatedFileStatus;
 import org.apache.hadoop.fs.FileStatus;
 import org.apache.hadoop.fs.FileSystem;
 import org.apache.hadoop.fs.Path;
@@ -117,14 +115,6 @@ public class RecoveryWithEmptyRFileIT extends ConfigurableMacIT {
     meta.close();
     assertTrue(foundFile);
 
-    if(log.isTraceEnabled()) {
-      log.trace("Enumerating backing filesystem paths:");
-      RemoteIterator<LocatedFileStatus> paths = cluster.getFileSystem().listFiles(new Path("/"), true);
-      while (paths.hasNext()) {
-        FileStatus path = paths.next();
-        log.trace(path.toString());
-      }
-    }
     log.trace("invalidate cached file handles by issuing a compaction");
     connector.tableOperations().online("test_ingest", true);
     connector.tableOperations().compact("test_ingest", null, null, false, true);