You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hama.apache.org by ed...@apache.org on 2008/09/02 11:53:20 UTC

svn commit: r691177 - /incubator/hama/trunk/src/test/org/apache/hama/HamaTestCase.java

Author: edwardyoon
Date: Tue Sep  2 02:53:20 2008
New Revision: 691177

URL: http://svn.apache.org/viewvc?rev=691177&view=rev
Log:
Remove unused code.

Modified:
    incubator/hama/trunk/src/test/org/apache/hama/HamaTestCase.java

Modified: incubator/hama/trunk/src/test/org/apache/hama/HamaTestCase.java
URL: http://svn.apache.org/viewvc/incubator/hama/trunk/src/test/org/apache/hama/HamaTestCase.java?rev=691177&r1=691176&r2=691177&view=diff
==============================================================================
--- incubator/hama/trunk/src/test/org/apache/hama/HamaTestCase.java (original)
+++ incubator/hama/trunk/src/test/org/apache/hama/HamaTestCase.java Tue Sep  2 02:53:20 2008
@@ -33,18 +33,5 @@
   /** constructor */
   public HamaTestCase() {
     super();
-
-    // Initializing the hbase configuration
-    conf.set("mapred.output.dir", conf.get("hadoop.tmp.dir"));
-
-    conf.setInt("mapred.map.tasks", 10);
-    conf.setInt("mapred.reduce.tasks", 1);
-
-    conf.setInt("hbase.hregion.memcache.flush.size", 1024 * 1024);
-    conf.setInt("hbase.hstore.compactionThreshold", 2);
-    conf.setLong("hbase.hregion.max.filesize", 1024 * 1024);
-    conf.setInt("hbase.master.lease.period", 10 * 1000);
-    conf.setInt("hbase.master.lease.thread.wakefrequency", 5 * 1000);
-    conf.setInt("hbase.client.pause", 10 * 1000);
   }
 }