Skip to content

Commit

Permalink
thread name
Browse files Browse the repository at this point in the history
  • Loading branch information
ywangd committed Nov 28, 2024
1 parent d2b3dc5 commit 4121ac3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ static String threadInfo(String threadName) {
Matcher m = ELASTICSEARCH_THREAD_NAME_PATTERN.matcher(threadName);
if (m.matches()) {
// Thread looks like a node thread so use the node name
return m.group(1);
return threadName.substring(13);
}
m = TEST_THREAD_NAME_PATTERN.matcher(threadName);
if (m.matches()) {
Expand Down

0 comments on commit 4121ac3

Please sign in to comment.