8000 Increase time out for http requests done in Axis integration by Kane610 · Pull Request #48610 · home-assistant/core · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Increase time out for http requests done in Axis integration #48610

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


2 changes: 1 addition & 1 deletion homeassistant/components/axis/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ async def get_device(hass, host, port, username, password):
)

try:
with async_timeout.timeout(15):
with async_timeout.timeout(30):
await device.vapix.initialize()

return device
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/axis/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Axis",
"config_flow": true,
"documentation": "https://www.home-assistant.io/integrations/axis",
"requirements": ["axis==43"],
"requirements": ["axis==44"],
"dhcp": [
{ "hostname": "axis-00408c*", "macaddress": "00408C*" },
{ "hostname": "axis-accc8e*", "macaddress": "ACCC8E*" },
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ av==8.0.3
# avion==0.10

# homeassistant.components.axis
axis==43
axis==44

# homeassistant.components.azure_event_hub
azure-eventhub==5.1.0
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ auroranoaa==0.0.2
av==8.0.3

# homeassistant.components.axis
axis==43
axis==44

# homeassistant.components.azure_event_hub
azure-eventhub==5.1.0
Expand Down
0