Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
680ffe30
Commit
680ffe30
authored
May 14, 2004
by
bugreport%peshkin.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 239263: Avoid hazard in User->groups by switching to main DB for rederive
r=jouni a=justdave
parent
0f65460c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
User.pm
Bugzilla/User.pm
+7
-0
No files found.
Bugzilla/User.pm
View file @
680ffe30
...
...
@@ -107,7 +107,14 @@ sub _create {
$id
);
if
(
$result
)
{
my
$is_main_db
;
unless
(
$is_main_db
=
Bugzilla
->
dbwritesallowed
())
{
Bugzilla
->
switch_to_main_db
();
}
$self
->
derive_groups
(
$tables_locked_for_derive_groups
);
unless
(
$is_main_db
)
{
Bugzilla
->
switch_to_shadow_db
();
}
}
return
$self
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment