From 4ff34e9d3b747097a4bc88efd8171cae832a94e9 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Fri, 18 Feb 2000 05:40:54 +0000 Subject: Added an optional ability to keep a read-only shadow database, so that bug queries can be run against it, so that these slow queries won't be able to tie up the rest of the system. --- buglist.cgi | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'buglist.cgi') diff --git a/buglist.cgi b/buglist.cgi index 297d32255..be55f22b6 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -49,7 +49,9 @@ sub sillyness { my $serverpush = 0; -ConnectToDatabase(); +my $useshadow = Param("queryagainstshadowdb"); + +ConnectToDatabase($useshadow); # print "Content-type: text/plain\n\n"; # Handy for debugging. # $::FORM{'debug'} = 1; -- cgit v1.2.3-24-g4f1b