summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2014-05-12 07:11:59 +0200
committerByron Jones <glob@mozilla.com>2014-05-12 07:11:59 +0200
commit8243604780d562f47af41b9e9b2f78b00d29f424 (patch)
treeebe400dcbabaae82d4a43fa27a2285162e8147bd /Bugzilla
parentffaf79a2bcf3a37f81b8f35befd9f535e4bbb451 (diff)
downloadbugzilla-8243604780d562f47af41b9e9b2f78b00d29f424.tar.gz
bugzilla-8243604780d562f47af41b9e9b2f78b00d29f424.tar.xz
Bug 1002357: memached->clear_config isn't always called where required
r=dkl, a=glob
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Field.pm2
-rw-r--r--Bugzilla/Group.pm1
-rw-r--r--Bugzilla/Milestone.pm4
-rw-r--r--Bugzilla/Product.pm3
4 files changed, 8 insertions, 2 deletions
diff --git a/Bugzilla/Field.pm b/Bugzilla/Field.pm
index 98cf389a1..6ad8df573 100644
--- a/Bugzilla/Field.pm
+++ b/Bugzilla/Field.pm
@@ -1058,6 +1058,7 @@ sub create {
$field->_update_visibility_values();
$dbh->bz_commit_transaction();
+ Bugzilla->memcached->clear_config();
if ($field->custom) {
my $name = $field->name;
@@ -1096,6 +1097,7 @@ sub update {
$dbh->do("UPDATE " . $self->name . " SET visibility_value_id = NULL");
}
$self->_update_visibility_values();
+ Bugzilla->memcached->clear_config();
return $changes;
}
diff --git a/Bugzilla/Group.pm b/Bugzilla/Group.pm
index 534313d9c..58c9ea19d 100644
--- a/Bugzilla/Group.pm
+++ b/Bugzilla/Group.pm
@@ -216,6 +216,7 @@ sub update {
Bugzilla::Hook::process('group_end_of_update',
{ group => $self, changes => $changes });
$dbh->bz_commit_transaction();
+ Bugzilla->memcached->clear_config();
return $changes;
}
diff --git a/Bugzilla/Milestone.pm b/Bugzilla/Milestone.pm
index daa362c34..83438e7c6 100644
--- a/Bugzilla/Milestone.pm
+++ b/Bugzilla/Milestone.pm
@@ -113,10 +113,10 @@ sub update {
$dbh->do('UPDATE products SET defaultmilestone = ?
WHERE id = ? AND defaultmilestone = ?',
undef, ($self->name, $self->product_id, $changes->{value}->[0]));
- Bugzilla->memcached->clear({ table => 'produles', id => $self->product_id });
- Bugzilla->memcached->clear_config();
+ Bugzilla->memcached->clear({ table => 'products', id => $self->product_id });
}
$dbh->bz_commit_transaction();
+ Bugzilla->memcached->clear_config();
return $changes;
}
diff --git a/Bugzilla/Product.pm b/Bugzilla/Product.pm
index 55c4de0b8..3d4de7430 100644
--- a/Bugzilla/Product.pm
+++ b/Bugzilla/Product.pm
@@ -102,6 +102,7 @@ sub create {
Bugzilla::Hook::process('product_end_of_create', { product => $product });
$dbh->bz_commit_transaction();
+ Bugzilla->memcached->clear_config();
return $product;
}
@@ -258,6 +259,7 @@ sub update {
# Changes have been committed.
delete $self->{check_group_controls};
Bugzilla->user->clear_product_cache();
+ Bugzilla->memcached->clear_config();
return $changes;
}
@@ -316,6 +318,7 @@ sub remove_from_db {
$self->SUPER::remove_from_db();
$dbh->bz_commit_transaction();
+ Bugzilla->memcached->clear_config();
# We have to delete these internal variables, else we get
# the old lists of products and classifications again.