From dfb2df5c1c23058d78bae80ebe5dfb2295fc0954 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Mon, 28 Dec 2020 16:41:34 -0800 Subject: [PATCH] bump tombstone size limit for tici old-commit-hash: 1ac39ee9c3939d894e6c008b4be75fc25e806e32 --- selfdrive/tombstoned.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/selfdrive/tombstoned.py b/selfdrive/tombstoned.py index 8ae0a147b..1989dbd0c 100755 --- a/selfdrive/tombstoned.py +++ b/selfdrive/tombstoned.py @@ -5,11 +5,13 @@ import time from raven import Client from raven.transport.http import HTTPTransport -from selfdrive.version import version, origin, branch, dirty +from selfdrive.hardware import TICI from selfdrive.swaglog import cloudlog +from selfdrive.version import version, origin, branch, dirty MAX_SIZE = 100000 * 10 # Normal size is 40-100k, allow up to 1M - +if TICI: + MAX_SIZE = MAX_SIZE * 10 # Allow larger size for tici def get_tombstones(): """Returns list of (filename, ctime) for all tombstones in /data/tombstones