Skip to content

Commit

Permalink
Removes extra NEEO from thread name (#15779)
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Rosenblum <[email protected]>
  • Loading branch information
morph166955 authored Oct 20, 2023
1 parent 7313415 commit e9a2976
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ private synchronized HttpClient getHttpClient() {
if (stackSize == 0) {
int httpClientId = this.httpClientId + 1;
this.httpClientId = httpClientId;
String httpClientIdString = "neeo-" + brainId + "-" + httpClientId;
String httpClientIdString = "neeo-" + brainId.substring(5) + "-" + httpClientId;
logger.debug("getHttpClient created new client {} for brain {}", httpClientIdString, brainId);
HttpClient httpClient = httpClientFactory.createHttpClient(httpClientIdString);
try {
Expand Down

0 comments on commit e9a2976

Please sign in to comment.