We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7313415 commit e9a2976Copy full SHA for e9a2976
bundles/org.openhab.io.neeo/src/main/java/org/openhab/io/neeo/internal/NeeoApi.java
@@ -474,7 +474,7 @@ private synchronized HttpClient getHttpClient() {
474
if (stackSize == 0) {
475
int httpClientId = this.httpClientId + 1;
476
this.httpClientId = httpClientId;
477
- String httpClientIdString = "neeo-" + brainId + "-" + httpClientId;
+ String httpClientIdString = "neeo-" + brainId.substring(5) + "-" + httpClientId;
478
logger.debug("getHttpClient created new client {} for brain {}", httpClientIdString, brainId);
479
HttpClient httpClient = httpClientFactory.createHttpClient(httpClientIdString);
480
try {
0 commit comments