Removes extra NEEO from thread name (#15779)
Signed-off-by: Ben Rosenblum <rosenblumb@gmail.com>
This commit is contained in:
parent
7313415ae0
commit
e9a2976053
|
@ -474,7 +474,7 @@ public class NeeoApi implements AutoCloseable {
|
||||||
if (stackSize == 0) {
|
if (stackSize == 0) {
|
||||||
int httpClientId = this.httpClientId + 1;
|
int httpClientId = this.httpClientId + 1;
|
||||||
this.httpClientId = httpClientId;
|
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);
|
logger.debug("getHttpClient created new client {} for brain {}", httpClientIdString, brainId);
|
||||||
HttpClient httpClient = httpClientFactory.createHttpClient(httpClientIdString);
|
HttpClient httpClient = httpClientFactory.createHttpClient(httpClientIdString);
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue