You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uniffle.apache.org by ro...@apache.org on 2023/06/27 06:04:56 UTC

[incubator-uniffle] branch master updated: [MINOR] fix(tez): fix thread factory name (#975)

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

roryqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git


The following commit(s) were added to refs/heads/master by this push:
     new 431cb78a [MINOR] fix(tez): fix thread factory name (#975)
431cb78a is described below

commit 431cb78aa5f8bddb1adf04944e2d306db368e847
Author: zhengchenyu <zh...@163.com>
AuthorDate: Tue Jun 27 14:04:50 2023 +0800

    [MINOR] fix(tez): fix thread factory name (#975)
    
    Co-authored-by: zhengchenyu001 <zh...@ke.com>
---
 client-tez/src/main/java/org/apache/tez/dag/app/RssDAGAppMaster.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/client-tez/src/main/java/org/apache/tez/dag/app/RssDAGAppMaster.java b/client-tez/src/main/java/org/apache/tez/dag/app/RssDAGAppMaster.java
index 65da3759..16086897 100644
--- a/client-tez/src/main/java/org/apache/tez/dag/app/RssDAGAppMaster.java
+++ b/client-tez/src/main/java/org/apache/tez/dag/app/RssDAGAppMaster.java
@@ -77,7 +77,7 @@ public class RssDAGAppMaster extends DAGAppMaster {
 
   private DAGProtos.PlanLocalResource rssConfFileLocalResource;
   final ScheduledExecutorService scheduledExecutorService = Executors.newSingleThreadScheduledExecutor(
-          ThreadUtils.getThreadFactory("AppHeartbeat-%d")
+          ThreadUtils.getThreadFactory("AppHeartbeat")
   );
 
   public RssDAGAppMaster(ApplicationAttemptId applicationAttemptId, ContainerId containerId,