1
0
mirror of https://github.com/esphome/esphome.git synced 2025-03-13 14:18:14 +00:00

improve error

This commit is contained in:
J. Nick Koston 2025-02-23 18:30:36 -05:00
parent 0f5cbd21ac
commit 95a5b62cc6
No known key found for this signature in database

View File

@ -206,7 +206,7 @@ def validate_remaining_connections(config):
return config
raise cv.Invalid(
f"Exceeded {CONF_MAX_CONNECTIONS}: "
f"{used_slots}/{config[CONF_MAX_CONNECTIONS]}: "
f"Requested {used_slots} of configured maximum {config[CONF_MAX_CONNECTIONS]}: "
"Decrease the number of BLE clients or increase the maximum connections."
)