From ca1f0909fbe26f9e748a0afff37d61f88e8b156d Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Thu, 21 Jul 2022 02:13:10 +0200 Subject: [PATCH] Fix spelling in recorder integration (#75539) --- homeassistant/components/recorder/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/recorder/core.py b/homeassistant/components/recorder/core.py index 9585804690a..49e870b658f 100644 --- a/homeassistant/components/recorder/core.py +++ b/homeassistant/components/recorder/core.py @@ -295,9 +295,9 @@ class Recorder(threading.Thread): @callback def _async_check_queue(self, *_: Any) -> None: - """Periodic check of the queue size to ensure we do not exaust memory. + """Periodic check of the queue size to ensure we do not exhaust memory. - The queue grows during migraton or if something really goes wrong. + The queue grows during migration or if something really goes wrong. """ size = self.backlog _LOGGER.debug("Recorder queue size is: %s", size)