mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-10 15:11:59 +01:00
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) {
|
||||
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 {
|
||||
|
Loading…
Reference in New Issue
Block a user