Regression of openhab/openhab-core#4389

Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk>
pull/17489/head
Jacob Laursen 2024-10-01 23:01:01 +02:00 committed by GitHub
parent 80fc5db373
commit 4651f5c101
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ public class LinkTapBridgeHandler extends BaseBridgeHandler {
final long sysMillis = System.currentTimeMillis();
if (lastMdnsScanMillis + MIN_TIME_BETWEEN_MDNS_SCANS_MS < sysMillis) {
logger.debug("Requesting MDNS Scan");
discoverySrvReg.startScan(THING_TYPE_GATEWAY, null);
discoverySrvReg.startScan(THING_TYPE_GATEWAY, null, null);
lastMdnsScanMillis = sysMillis;
} else {
logger.trace("Not requesting MDNS Scan last ran under 10 min's ago");