mirror of https://github.com/apache/druid.git
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.
This commit is contained in:
parent
2309aa7bdf
commit
01baf99148
|
@ -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(
|
||||
|
|
Loading…
Reference in New Issue