forked from LBRYCommunity/lbry-sdk
Merge pull request #2730 from lbryio/bump-aioupnp2
update aioupnp requirement to 0.0.17
This commit is contained in:
commit
0e3407ec2f
2 changed files with 5 additions and 3 deletions
|
@ -475,8 +475,10 @@ class UPnPComponent(Component):
|
||||||
if self.external_ip:
|
if self.external_ip:
|
||||||
log.info("detected external ip using lbry.com fallback")
|
log.info("detected external ip using lbry.com fallback")
|
||||||
if self.component_manager.analytics_manager:
|
if self.component_manager.analytics_manager:
|
||||||
await self.component_manager.analytics_manager.send_upnp_setup_success_fail(
|
self.component_manager.loop.create_task(
|
||||||
success, await self.get_status()
|
self.component_manager.analytics_manager.send_upnp_setup_success_fail(
|
||||||
|
success, await self.get_status()
|
||||||
|
)
|
||||||
)
|
)
|
||||||
self._maintain_redirects_task = self.component_manager.loop.create_task(
|
self._maintain_redirects_task = self.component_manager.loop.create_task(
|
||||||
self._repeatedly_maintain_redirects(now=False)
|
self._repeatedly_maintain_redirects(now=False)
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -34,7 +34,7 @@ setup(
|
||||||
},
|
},
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'aiohttp==3.5.4',
|
'aiohttp==3.5.4',
|
||||||
'aioupnp==0.0.16',
|
'aioupnp==0.0.17',
|
||||||
'appdirs==1.4.3',
|
'appdirs==1.4.3',
|
||||||
'certifi>=2018.11.29',
|
'certifi>=2018.11.29',
|
||||||
'colorama==0.3.7',
|
'colorama==0.3.7',
|
||||||
|
|
Loading…
Add table
Reference in a new issue