Skip to content

Commit dc4798e

Browse files
committed
3.3.1
1 parent 58fca8b commit dc4798e

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858

5959
<clover.license>${user.home}/clover.license</clover.license>
6060
<guava.version>27.0-jre</guava.version>
61-
<hadoop.version>3.2.2</hadoop.version>
61+
<hadoop.version>3.3.1</hadoop.version>
6262
<netty.version>4.0.52.Final</netty.version>
6363
<pig.version>0.13.0</pig.version>
6464
<jersey.version>1.19</jersey.version>

tez-api/src/test/java/org/apache/tez/dag/api/client/rpc/TestDAGClient.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,11 @@ public void testTimelineClientCleanup() throws Exception {
561561
threadGroup.enumerate(threads);
562562
Thread reloaderThread = null;
563563
for (Thread thread : threads) {
564-
if ((thread.getName() != null) && (thread.getName().contains("Truststore reloader thread"))) {
564+
/* Since HADOOP-16524, the reloader thread's name is changed, let's handle the backward compatibility
565+
* with a simple OR, as this is just a unit test, it's not worth involving a hadoop version check.
566+
*/
567+
if ((thread.getName() != null) && (thread.getName().contains("Truststore reloader thread"))
568+
|| (thread.getName().contains("SSL Certificates Store Monitor"))) {
565569
reloaderThread = thread;
566570
}
567571
}

0 commit comments

Comments
 (0)