Skip to content

Commit

Permalink
Fix build (#17493)
Browse files Browse the repository at this point in the history
Regression of openhab/openhab-core#4389

Signed-off-by: Jacob Laursen <[email protected]>
  • Loading branch information
jlaur authored Oct 1, 2024
1 parent 80fc5db commit 4651f5c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ private void requestMdnsScan() {
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");
Expand Down

0 comments on commit 4651f5c

Please sign in to comment.