From 6e90a43f98d85a0692bbade545ee85ae2ad321c1 Mon Sep 17 00:00:00 2001 From: Matthieu Patou Date: Thu, 11 Nov 2010 22:17:52 +0300 Subject: [PATCH] use the cached version of the build farm for the web interface --- web/build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/build.py b/web/build.py index 6d06c3d8..977f16e0 100755 --- a/web/build.py +++ b/web/build.py @@ -30,7 +30,7 @@ import sys sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..")) from buildfarm import ( - BuildFarm, + CachingBuildFarm, data, history, util, @@ -45,7 +45,7 @@ standalone = 0 webdir = os.path.dirname(__file__) basedir = os.path.abspath(os.path.join(webdir, "..")) -buildfarm = BuildFarm() +buildfarm = CachingBuildFarm() db = data.BuildResultStore(basedir) #history = history.History(db) -- 2.34.1