From ae2b7cbf847e408c3dc7d3ec77051dac7b985c0d Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Tue, 12 Feb 2019 18:41:16 -0500 Subject: [PATCH] Correct excessively short log length limit --- buildsrht/blueprints/jobs.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/buildsrht/blueprints/jobs.py b/buildsrht/blueprints/jobs.py index fb5a938..e8f5852 100644 --- a/buildsrht/blueprints/jobs.py +++ b/buildsrht/blueprints/jobs.py @@ -216,8 +216,7 @@ def tag_svg(username, path): return svg_page(jobs) def logify(text, task, log_url): - #log_max = 16384 - log_max = 512 + log_max = 16384 if len(text) > log_max: text = text[-log_max:] try: -- 2.38.5