mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 15:07:28 -06:00
Remove timeout = 0 for get_service_info
CURA-4252
This commit is contained in:
parent
7f944ff08b
commit
b55efdd70e
1 changed files with 1 additions and 1 deletions
|
@ -282,7 +282,7 @@ class NetworkPrinterOutputDevicePlugin(QObject, OutputDevicePlugin):
|
|||
# Request more data if info is not complete
|
||||
if not info.address:
|
||||
Logger.log("d", "Trying to get address of %s", name)
|
||||
info = zeroconf.get_service_info(service_type, name, 0)
|
||||
info = zeroconf.get_service_info(service_type, name)
|
||||
|
||||
if info:
|
||||
type_of_device = info.properties.get(b"type", None)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue