increase cloudlog size for uploader errors

albatross
Willem Melching 2021-05-17 13:51:07 +02:00
parent c08f043b1c
commit 2a05701f47
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ class TestOnroad(unittest.TestCase):
msgs = [m for m in self.lr if m.which() == 'logMessage']
total_size = sum(len(m.as_builder().to_bytes()) for m in msgs)
self.assertLess(total_size, 2.5e5)
self.assertLess(total_size, 3.5e5)
cnt = Counter([json.loads(m.logMessage)['filename'] for m in msgs])
big_logs = [f for f, n in cnt.most_common(3) if n / sum(cnt.values()) > 30.]