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

karan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git


The following commit(s) were added to refs/heads/master by this push:
     new 01baf99148a DartWorkerModule: Replace en dash with regular dash. 
(#17281)
01baf99148a is described below

commit 01baf99148a499e8826d3b71d182deccfcca9b73
Author: Gian Merlino <[email protected]>
AuthorDate: Tue Oct 8 03:18:10 2024 -0700

    DartWorkerModule: Replace en dash with regular dash. (#17281)
    
    Due to a typo, the thread name of the worker executor used an en dash (–)
    rather than a regular hyphen (-). This was unintentional, and makes it
    difficult to search for in thread dumps.
---
 .../src/main/java/org/apache/druid/msq/dart/guice/DartWorkerModule.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/extensions-core/multi-stage-query/src/main/java/org/apache/druid/msq/dart/guice/DartWorkerModule.java
 
b/extensions-core/multi-stage-query/src/main/java/org/apache/druid/msq/dart/guice/DartWorkerModule.java
index 15bc0e65299..e9bd59f53d8 100644
--- 
a/extensions-core/multi-stage-query/src/main/java/org/apache/druid/msq/dart/guice/DartWorkerModule.java
+++ 
b/extensions-core/multi-stage-query/src/main/java/org/apache/druid/msq/dart/guice/DartWorkerModule.java
@@ -113,7 +113,7 @@ public class DartWorkerModule implements DruidModule
         final AuthorizerMapper authorizerMapper
     )
     {
-      final ExecutorService exec = 
Execs.multiThreaded(memoryIntrospector.numTasksInJvm(), "dart–worker-%s");
+      final ExecutorService exec = 
Execs.multiThreaded(memoryIntrospector.numTasksInJvm(), "dart-worker-%s");
       final File baseTempDir =
           new File(processingConfig.getTmpDir(), StringUtils.format("dart_%s", 
selfNode.getPortToUse()));
       return new DartWorkerRunner(


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to