Skip to content

Commit

Permalink
fix(uploader): rearrange upload priority
Browse files Browse the repository at this point in the history
  • Loading branch information
jamcar23 committed Aug 31, 2020
1 parent 128b0c7 commit f09c711
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion selfdrive/loggerd/uploader.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def __init__(self, dongle_id, root):

self.immediate_priority = {"qlog.bz2": 0, "qcamera.ts": 1}
self.medium_priority = {"rlog.bz2": 0}
self.high_priority = {"fcamera.hevc": 1, "dcamera.hevc": 0}
self.high_priority = {"dcamera.hevc": 0, "fcamera.hevc": 1}

def get_upload_sort(self, name):
if name in self.immediate_priority:
Expand Down

0 comments on commit f09c711

Please sign in to comment.