summaryrefslogtreecommitdiffstats
path: root/Bugzilla/JobQueue.pm
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2013-02-27 07:35:35 +0100
committerByron Jones <bjones@mozilla.com>2013-02-27 07:35:35 +0100
commitd388c8203d3fb1f2f97569dd9dbdffcd5acc8aa2 (patch)
tree6a5924df2b13b72f6ddc51e3fb51c474800cd179 /Bugzilla/JobQueue.pm
parentaa6d6dd9b7bd75d6f6536a8102eaf326618e0bc8 (diff)
downloadbugzilla-d388c8203d3fb1f2f97569dd9dbdffcd5acc8aa2.tar.gz
bugzilla-d388c8203d3fb1f2f97569dd9dbdffcd5acc8aa2.tar.xz
disable debugging on jobqueue worker processes
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 ac97e58c4..053928dd0 100644
--- a/Bugzilla/JobQueue.pm
+++ b/Bugzilla/JobQueue.pm
@@ -106,7 +106,7 @@ sub insert {
sub subprocess_worker {
my $self = shift;
- my $command = "$0 -d -p '" . $self->{_worker_pidfile} . "' onepass";
+ my $command = "$0 -p '" . $self->{_worker_pidfile} . "' onepass";
while (1) {
my $time = (time);