summaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2015-11-15 22:35:43 +0100
committerDavid Lawrence <dkl@mozilla.com>2015-11-15 22:35:43 +0100
commit8f9a0af99ec7c53d7ab1f4275f853df1a33587f5 (patch)
treecaf44c7cc36b9e19780622867abe581758ff86fe /docker
parentd36474ad4d0c34e5f1d2d1488ca550166565e2f0 (diff)
downloadbugzilla-8f9a0af99ec7c53d7ab1f4275f853df1a33587f5.tar.gz
bugzilla-8f9a0af99ec7c53d7ab1f4275f853df1a33587f5.tar.xz
Bug 1224912 - Fix test regressions introduced by changes in bug 1224649
Diffstat (limited to 'docker')
-rwxr-xr-xdocker/scripts/generate_bmo_data.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/scripts/generate_bmo_data.pl b/docker/scripts/generate_bmo_data.pl
index 178d8353e..10a9436df 100755
--- a/docker/scripts/generate_bmo_data.pl
+++ b/docker/scripts/generate_bmo_data.pl
@@ -387,7 +387,7 @@ foreach my $group (@groups) {
}
# Update default security group settings for new products
-my $default_security_group = Bugzilla::Group->new({ name => 'core-security' });
+my $default_security_group = Bugzilla::Group->new({ name => 'core-security-release' });
if ($default_security_group) {
$dbh->do('UPDATE products SET security_group_id = ? WHERE security_group_id IS NULL',
undef, $default_security_group->id);