Skip to content
Snippets Groups Projects
Unverified Commit 2a99ef20 authored by Guess's avatar Guess Committed by GitHub
Browse files

Set PARALLEL_UPDATES for ping binary sensor (#59524)

Changing PARALLEL_UPDATES from 0 (unlimited) to 50 as with many sensors (above 500) successful pings weren't being recorded. Resolves https://github.com/home-assistant/core/issues/54860
parent 65b1f0d9
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ DEFAULT_PING_COUNT = 5
SCAN_INTERVAL = timedelta(minutes=5)
PARALLEL_UPDATES = 0
PARALLEL_UPDATES = 50
PING_MATCHER = re.compile(
r"(?P<min>\d+.\d+)\/(?P<avg>\d+.\d+)\/(?P<max>\d+.\d+)\/(?P<mdev>\d+.\d+)"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment