Upgrade to async_upnp_client==0.14.10 and increase search timeout (#24685)
parent
40fa4463de
commit
f189367c02
|
@ -3,7 +3,7 @@
|
|||
"name": "Dlna dmr",
|
||||
"documentation": "https://www.home-assistant.io/components/dlna_dmr",
|
||||
"requirements": [
|
||||
"async-upnp-client==0.14.7"
|
||||
"async-upnp-client==0.14.10"
|
||||
],
|
||||
"dependencies": [],
|
||||
"codeowners": []
|
||||
|
|
|
@ -32,7 +32,8 @@ class Device:
|
|||
|
||||
# discover devices
|
||||
from async_upnp_client.profiles.igd import IgdDevice
|
||||
discovery_infos = await IgdDevice.async_search(source_ip=local_ip)
|
||||
discovery_infos = await IgdDevice.async_search(source_ip=local_ip,
|
||||
timeout=10)
|
||||
|
||||
# add extra info and store devices
|
||||
devices = []
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"config_flow": true,
|
||||
"documentation": "https://www.home-assistant.io/components/upnp",
|
||||
"requirements": [
|
||||
"async-upnp-client==0.14.7"
|
||||
"async-upnp-client==0.14.10"
|
||||
],
|
||||
"dependencies": [],
|
||||
"codeowners": [
|
||||
|
|
|
@ -209,7 +209,7 @@ asterisk_mbox==0.5.0
|
|||
|
||||
# homeassistant.components.dlna_dmr
|
||||
# homeassistant.components.upnp
|
||||
async-upnp-client==0.14.7
|
||||
async-upnp-client==0.14.10
|
||||
|
||||
# homeassistant.components.stream
|
||||
av==6.1.2
|
||||
|
|
Loading…
Reference in New Issue