From 804844b02cec2aae586d4d65e01b38dc0f82d091 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 31 Jan 2018 11:18:55 +0000 Subject: [PATCH] sg-report-host-history: Multiply size of reported history by 10 Right now, http://logs.test-lab.xenproject.org/osstest/results/host/laxton1.html contains ~200 jobs as expected, but that covers only 4 days. We obviously would like more like a month. The effect ought to be some more db work, but not worse concurrency. CC: Julien Grall Signed-off-by: Ian Jackson --- sg-report-host-history | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sg-report-host-history b/sg-report-host-history index 19a86abd..871ad5fe 100755 --- a/sg-report-host-history +++ b/sg-report-host-history @@ -28,7 +28,7 @@ use POSIX; use Osstest::Executive qw(:DEFAULT :colours); -our $limit= 200; +our $limit= 2000; our $flightlimit; our $htmlout = "."; our @blessings; -- 2.39.5