From 34e0b26dc43f4b37fffbb591bc4557e24f130f01 Mon Sep 17 00:00:00 2001 From: Willem Melching Date: Tue, 5 Apr 2022 17:57:01 -0700 Subject: [PATCH] athena.upload_handler.upload_start log retry count (#24139) old-commit-hash: 714efe828a10b1c9cf5f4b37b96af13c3d9333a1 --- selfdrive/athena/athenad.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/athena/athenad.py b/selfdrive/athena/athenad.py index 1bb99bf2d1..bd946a097a 100755 --- a/selfdrive/athena/athenad.py +++ b/selfdrive/athena/athenad.py @@ -203,7 +203,7 @@ def upload_handler(end_event: threading.Event) -> None: except OSError: sz = -1 - cloudlog.event("athena.upload_handler.upload_start", fn=fn, sz=sz, network_type=network_type, metered=metered) + cloudlog.event("athena.upload_handler.upload_start", fn=fn, sz=sz, network_type=network_type, metered=metered, retry_count=cur_upload_items[tid].retry_count) response = _do_upload(cur_upload_items[tid], cb) if response.status_code not in (200, 201, 403, 412):