Skip to content

Commit

Permalink
DartWorkerModule: Replace en dash with regular dash. (apache#17281)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
gianm authored Oct 8, 2024
1 parent 2309aa7 commit 01baf99
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public DartWorkerRunner createWorkerRunner(
final AuthorizerMapper authorizerMapper
)
{
final ExecutorService exec = Execs.multiThreaded(memoryIntrospector.numTasksInJvm(), "dartworker-%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(
Expand Down

0 comments on commit 01baf99

Please sign in to comment.