浏览代码

HDFS-15164. Fix TestDelegationTokensWithHA. Contributed by Ayush Saxena.

Ayush Saxena 5 年之前
父节点
当前提交
cf5a7186e5

+ 2 - 0
hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/namenode/ha/TestDelegationTokensWithHA.java

@@ -59,6 +59,7 @@ import java.security.PrivilegedExceptionAction;
 import java.util.Collection;
 import java.util.HashSet;
 
+import static org.apache.hadoop.hdfs.server.namenode.ha.ObserverReadProxyProvider.OBSERVER_PROBE_RETRY_PERIOD_KEY;
 import static org.junit.Assert.*;
 
 /**
@@ -122,6 +123,7 @@ public class TestDelegationTokensWithHA {
   public void testObserverReadProxyProviderWithDT() throws Exception {
     // Make the first node standby, so that the ORPP will try it first
     // instead of just using and succeeding on the active
+    conf.setInt(OBSERVER_PROBE_RETRY_PERIOD_KEY, 0);
     cluster.transitionToStandby(0);
     cluster.transitionToActive(1);