mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-07-19 15:16:33 +00:00
Bump aiohttp to 3.10.2, drop aiohttp-fast-url-dispatcher (#5236)
aiohttp-fast-url-dispatcher is not needed for 3.10.x changelog: https://github.com/aio-libs/aiohttp/compare/v3.9.5...v3.10.2
This commit is contained in:
parent
cb85e5e464
commit
4c3f60c44b
@ -1,6 +1,5 @@
|
|||||||
aiodns==3.2.0
|
aiodns==3.2.0
|
||||||
aiohttp==3.9.5
|
aiohttp==3.10.2
|
||||||
aiohttp-fast-url-dispatcher==0.3.1
|
|
||||||
atomicwrites-homeassistant==1.4.1
|
atomicwrites-homeassistant==1.4.1
|
||||||
attrs==24.2.0
|
attrs==24.2.0
|
||||||
awesomeversion==24.6.0
|
awesomeversion==24.6.0
|
||||||
|
@ -5,7 +5,6 @@ from pathlib import Path
|
|||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
from aiohttp import web
|
from aiohttp import web
|
||||||
from aiohttp_fast_url_dispatcher import FastUrlDispatcher, attach_fast_url_dispatcher
|
|
||||||
|
|
||||||
from ..const import AddonState
|
from ..const import AddonState
|
||||||
from ..coresys import CoreSys, CoreSysAttributes
|
from ..coresys import CoreSys, CoreSysAttributes
|
||||||
@ -67,7 +66,6 @@ class RestAPI(CoreSysAttributes):
|
|||||||
"max_field_size": MAX_LINE_SIZE,
|
"max_field_size": MAX_LINE_SIZE,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
attach_fast_url_dispatcher(self.webapp, FastUrlDispatcher())
|
|
||||||
|
|
||||||
# service stuff
|
# service stuff
|
||||||
self._runner: web.AppRunner = web.AppRunner(self.webapp, shutdown_timeout=5)
|
self._runner: web.AppRunner = web.AppRunner(self.webapp, shutdown_timeout=5)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user