LogReader sourcing: check comma API source before CI source (#35992)

sort
pull/35995/head
Shane Smiskol 1 day ago committed by GitHub
parent a6d0a88b1e
commit aa91a02db8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      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

Loading…
Cancel
Save