You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by ab...@apache.org on 2022/02/10 21:52:30 UTC

[tez] branch branch-0.9 updated: TEZ-4380: TestSecureShuffle fails on branch-0.9 (#182) (Mark Bathori reviewed by Laszlo Bodor)

This is an automated email from the ASF dual-hosted git repository.

abstractdog pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/tez.git


The following commit(s) were added to refs/heads/branch-0.9 by this push:
     new f69029c  TEZ-4380: TestSecureShuffle fails on branch-0.9 (#182) (Mark Bathori reviewed by Laszlo Bodor)
f69029c is described below

commit f69029cb4b03cb3a86ea9ddc96db53f2aa6dd417
Author: Mark Bathori <57...@users.noreply.github.com>
AuthorDate: Thu Feb 10 22:52:25 2022 +0100

    TEZ-4380: TestSecureShuffle fails on branch-0.9 (#182) (Mark Bathori reviewed by Laszlo Bodor)
---
 tez-tests/src/test/java/org/apache/tez/test/TestSecureShuffle.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tez-tests/src/test/java/org/apache/tez/test/TestSecureShuffle.java b/tez-tests/src/test/java/org/apache/tez/test/TestSecureShuffle.java
index 00196a2..0261ff4 100644
--- a/tez-tests/src/test/java/org/apache/tez/test/TestSecureShuffle.java
+++ b/tez-tests/src/test/java/org/apache/tez/test/TestSecureShuffle.java
@@ -138,6 +138,8 @@ public class TestSecureShuffle {
       setupKeyStores();
     }
     conf.setBoolean(MRConfig.SHUFFLE_SSL_ENABLED_KEY, enableSSLInCluster);
+    //Hadoop 2.7 has only TLSv1 as enabled protocol which is not supported anymore so the protocol list needs extension
+    conf.set(SSLFactory.SSL_ENABLED_PROTOCOLS, "TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2");
 
     // 3 seconds should be good enough in local machine
     conf.setInt(TezRuntimeConfiguration.TEZ_RUNTIME_SHUFFLE_CONNECT_TIMEOUT, 3 * 1000);