diff --git a/homeassistant/core.py b/homeassistant/core.py index 2806907f19f1..8e88820bf708 100644 --- a/homeassistant/core.py +++ b/homeassistant/core.py @@ -174,7 +174,7 @@ def valid_domain(domain: str) -> bool: return VALID_DOMAIN.match(domain) is not None -@functools.lru_cache(64) +@functools.lru_cache(512) def valid_entity_id(entity_id: str) -> bool: """Test if an entity ID is a valid format.