Revert "HDFS-12185. Ozone: Fix Leaking in TestXceiverClientManager. Contributed by Xiaoyu Yao"

This reverts commit f801454ad320e0d9c544c4249456bcaf50b4f30b.
This commit is contained in:
Chen Liang 2017-07-21 14:18:41 -07:00 committed by Owen O'Malley
parent eda559ffd2
commit d05b44f417

View File

@ -19,7 +19,6 @@
import com.google.common.cache.Cache;
import org.apache.commons.lang.RandomStringUtils;
import org.apache.hadoop.io.IOUtils;
import org.apache.hadoop.ozone.MiniOzoneCluster;
import org.apache.hadoop.ozone.OzoneConfiguration;
import org.apache.hadoop.ozone.OzoneConsts;
@ -30,7 +29,6 @@
.StorageContainerLocationProtocolClientSideTranslatorPB;
import org.apache.hadoop.scm.storage.ContainerProtocolCalls;
import org.junit.Assert;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Rule;
import org.junit.Test;
@ -63,11 +61,6 @@ public static void init() throws IOException {
.createStorageContainerLocationClient();
}
@AfterClass
public static void shutdown() {
IOUtils.cleanup(null, cluster, storageContainerLocationClient);
}
@Test
public void testCaching() throws IOException {
OzoneConfiguration conf = new OzoneConfiguration();