From aa91a02db8278bb52eba64b47390ed5c341363db Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Thu, 14 Aug 2025 18:26:19 -0700 Subject: [PATCH] LogReader sourcing: check comma API source before CI source (#35992) sort --- tools/lib/logreader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/lib/logreader.py b/tools/lib/logreader.py index cc84c8b52e..6b0d9fa527 100755 --- a/tools/lib/logreader.py +++ b/tools/lib/logreader.py @@ -298,7 +298,7 @@ class LogReader: def __init__(self, identifier: str | list[str], default_mode: ReadMode = ReadMode.RLOG, sources: list[Source] = None, sort_by_time=False, only_union_types=False): if sources is None: - sources = [internal_source, openpilotci_source, comma_api_source, comma_car_segments_source] + sources = [internal_source, comma_api_source, openpilotci_source, comma_car_segments_source] self.default_mode = default_mode self.sources = sources