mirror of
https://github.com/home-assistant/core.git
synced 2025-07-14 00:37:13 +00:00
Don't return coroutine in DLNA/DMR service handler (#32011)
Fixes #32010
This commit is contained in:
parent
832337f26c
commit
b6d60c36a5
@ -99,10 +99,10 @@ def catch_request_errors():
|
|||||||
"""Call wrapper for decorator."""
|
"""Call wrapper for decorator."""
|
||||||
|
|
||||||
@functools.wraps(func)
|
@functools.wraps(func)
|
||||||
def wrapper(self, *args, **kwargs):
|
async def wrapper(self, *args, **kwargs):
|
||||||
"""Catch asyncio.TimeoutError, aiohttp.ClientError errors."""
|
"""Catch asyncio.TimeoutError, aiohttp.ClientError errors."""
|
||||||
try:
|
try:
|
||||||
return func(self, *args, **kwargs)
|
return await func(self, *args, **kwargs)
|
||||||
except (asyncio.TimeoutError, aiohttp.ClientError):
|
except (asyncio.TimeoutError, aiohttp.ClientError):
|
||||||
_LOGGER.error("Error during call %s", func.__name__)
|
_LOGGER.error("Error during call %s", func.__name__)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user