From 9193214274889f2b7636146e72d8200e9bfaeb7b Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Tue, 4 Mar 2014 15:50:54 +0800 Subject: Bug 966180: backport bug 956233 to bmo (enable USE_MEMCACHE on most objects) --- contrib/reorg-tools/migrate_crash_signatures.pl | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'contrib/reorg-tools/migrate_crash_signatures.pl') diff --git a/contrib/reorg-tools/migrate_crash_signatures.pl b/contrib/reorg-tools/migrate_crash_signatures.pl index b12446280..4323c1d01 100755 --- a/contrib/reorg-tools/migrate_crash_signatures.pl +++ b/contrib/reorg-tools/migrate_crash_signatures.pl @@ -123,4 +123,10 @@ foreach my $bug (@$bugs) { print "done.\n"; } -$dbh->bz_commit_transaction() if $UPDATE_DB; +if ($UPDATE_DB) { + $dbh->bz_commit_transaction(); + + # It's complex to determine which items now need to be flushed from memcached. + # As this is expected to be a rare event, we just flush the entire cache. + Bugzilla->memcached->clear_all(); +} -- cgit v1.2.3-24-g4f1b