]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 822547: Make jobqueue.pl clear the request cache before sending each mail
authorByron Jones <bjones@mozilla.com>
Wed, 2 Jan 2013 16:32:38 +0000 (00:32 +0800)
committerByron Jones <bjones@mozilla.com>
Wed, 2 Jan 2013 16:32:38 +0000 (00:32 +0800)
r=dkl,a=LpSolit

Bugzilla.pm
Bugzilla/JobQueue.pm

index dacdb5f692d9a78fcc0bbb1940346cac7cd33242..26c8ebbc6b408ffbcf1e029073fc8ef732902911 100644 (file)
@@ -641,6 +641,18 @@ sub request_cache {
     return $_request_cache;
 }
 
+sub clear_request_cache {
+    $_request_cache = {};
+    if ($ENV{MOD_PERL}) {
+        require Apache2::RequestUtil;
+        my $request = eval { Apache2::RequestUtil->request };
+        if ($request) {
+            my $pnotes = $request->pnotes;
+            delete @$pnotes{(keys %$pnotes)};
+        }
+    }
+}
+
 # This is a per-process cache.  Under mod_cgi it's identical to the
 # request_cache.  When using mod_perl, items in this cache live until the
 # worker process is terminated.
@@ -662,7 +674,7 @@ sub _cleanup {
         $dbh->bz_rollback_transaction() if $dbh->bz_in_transaction;
         $dbh->disconnect;
     }
-    undef $_request_cache;
+    clear_request_cache();
 
     # These are both set by CGI.pm but need to be undone so that
     # Apache can actually shut down its children if it needs to.
index befa0c2f64b98f8cef7b1390975aa573a0c72101..5a33c12f237da0ebff1785bb234eb97c831b9701 100644 (file)
@@ -92,6 +92,13 @@ sub insert {
     return $retval;
 }
 
+# Clear the request cache at the start of each run.
+sub work_once {
+    my $self = shift;
+    Bugzilla->clear_request_cache();
+    return $self->SUPER::work_once(@_);
+}
+
 1;
 
 __END__