Ensure storage I/O for ignored devices runs in the executor (#7792)

This commit is contained in:
J. Nick Koston 2024-11-21 14:41:31 -06:00 committed by Jesse Hills
parent 1c1f3f7c55
commit e51f3d9498
No known key found for this signature in database
GPG key ID: BEAAE804EFD8E83A
2 changed files with 4 additions and 3 deletions

View file

@ -103,7 +103,7 @@ class ESPHomeDashboard:
self.loop = asyncio.get_running_loop()
self.ping_request = asyncio.Event()
self.entries = DashboardEntries(self)
self.load_ignored_devices()
await self.loop.run_in_executor(None, self.load_ignored_devices)
def load_ignored_devices(self) -> None:
storage_path = Path(ignored_devices_storage_path())

View file

@ -544,7 +544,7 @@ class ImportRequestHandler(BaseHandler):
class IgnoreDeviceRequestHandler(BaseHandler):
@authenticated
def post(self) -> None:
async def post(self) -> None:
dashboard = DASHBOARD
try:
args = json.loads(self.request.body.decode())
@ -576,7 +576,8 @@ class IgnoreDeviceRequestHandler(BaseHandler):
else:
dashboard.ignored_devices.discard(ignored_device.device_name)
dashboard.save_ignored_devices()
loop = asyncio.get_running_loop()
await loop.run_in_executor(None, dashboard.save_ignored_devices)
self.set_status(204)
self.finish()