Skip to content

Commit e9a2976

Browse files
authored
Removes extra NEEO from thread name (openhab#15779)
Signed-off-by: Ben Rosenblum <[email protected]>
1 parent 7313415 commit e9a2976

File tree

1 file changed

+1
-1
lines changed
  • bundles/org.openhab.io.neeo/src/main/java/org/openhab/io/neeo/internal

1 file changed

+1
-1
lines changed

bundles/org.openhab.io.neeo/src/main/java/org/openhab/io/neeo/internal/NeeoApi.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ private synchronized HttpClient getHttpClient() {
474474
if (stackSize == 0) {
475475
int httpClientId = this.httpClientId + 1;
476476
this.httpClientId = httpClientId;
477-
String httpClientIdString = "neeo-" + brainId + "-" + httpClientId;
477+
String httpClientIdString = "neeo-" + brainId.substring(5) + "-" + httpClientId;
478478
logger.debug("getHttpClient created new client {} for brain {}", httpClientIdString, brainId);
479479
HttpClient httpClient = httpClientFactory.createHttpClient(httpClientIdString);
480480
try {

0 commit comments

Comments
 (0)