From 128b09ee4392428467c1bcd7cf9c08fadf4ba2b5 Mon Sep 17 00:00:00 2001 From: Xiao Chen Date: Fri, 13 Apr 2018 09:04:52 -0700 Subject: [PATCH] HDFS-13430. Fix TestEncryptionZonesWithKMS failure due to HADOOP-14445. (cherry picked from commit 650359371175fba416331e73aa03d2a96ccb90e5) --- .../test/java/org/apache/hadoop/hdfs/TestEncryptionZones.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestEncryptionZones.java b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestEncryptionZones.java index 6f9ef290a76..51c6c4e771e 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestEncryptionZones.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestEncryptionZones.java @@ -110,6 +110,7 @@ import org.junit.Test; import org.junit.rules.Timeout; import org.mockito.Mockito; +import static org.apache.hadoop.fs.CommonConfigurationKeysPublic.KMS_CLIENT_COPY_LEGACY_TOKEN_KEY; import static org.junit.Assert.assertNotNull; import static org.mockito.Matchers.anyBoolean; import static org.mockito.Matchers.anyLong; @@ -192,6 +193,8 @@ public class TestEncryptionZones { // Lower the batch size for testing conf.setInt(DFSConfigKeys.DFS_NAMENODE_LIST_ENCRYPTION_ZONES_NUM_RESPONSES, 2); + // disable kms client copy legacy token logic because it's irrelevant. + conf.setBoolean(KMS_CLIENT_COPY_LEGACY_TOKEN_KEY, false); cluster = new MiniDFSCluster.Builder(conf).numDataNodes(1).build(); cluster.waitActive(); Logger.getLogger(EncryptionZoneManager.class).setLevel(Level.TRACE);