summaryrefslogtreecommitdiffstats
path: root/Bugzilla/JobQueue.pm
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2009-11-10 22:19:46 +0100
committermkanat%bugzilla.org <>2009-11-10 22:19:46 +0100
commit4b2c9f0f96242fcd5395c088de4e27bffbfb8085 (patch)
tree28f8d647697438d28cd38ec9aa901e04823c0ec5 /Bugzilla/JobQueue.pm
parent2f804027b44c5790d4547f3161bff28266150bef (diff)
downloadbugzilla-4b2c9f0f96242fcd5395c088de4e27bffbfb8085.tar.gz
bugzilla-4b2c9f0f96242fcd5395c088de4e27bffbfb8085.tar.xz
Bug 527505: Make 001compile.t use Bugzilla->feature to determine which modules to compile
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=mkanat
Diffstat (limited to 'Bugzilla/JobQueue.pm')
-rw-r--r--Bugzilla/JobQueue.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/JobQueue.pm b/Bugzilla/JobQueue.pm
index d10df9804..9e7172e2b 100644
--- a/Bugzilla/JobQueue.pm
+++ b/Bugzilla/JobQueue.pm
@@ -27,7 +27,7 @@ use strict;
use Bugzilla::Constants;
use Bugzilla::Error;
use Bugzilla::Install::Util qw(install_string);
-BEGIN { eval "use base qw(TheSchwartz)"; }
+use base qw(TheSchwartz);
# This maps job names for Bugzilla::JobQueue to the appropriate modules.
# If you add new types of jobs, you should add a mapping here.