summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2013-04-22 10:18:03 +0200
committerByron Jones <bjones@mozilla.com>2013-04-22 10:18:03 +0200
commitbaf36f72baa2095b92b298fd45d9cbb522cdca87 (patch)
treec4f478fb058ea6b92094cd6a6a85bedfe09d7d04 /Bugzilla/Bug.pm
parentd6c95940eb4a0e7dc66725d29b099fc75f17fa23 (diff)
downloadbugzilla-baf36f72baa2095b92b298fd45d9cbb522cdca87.tar.gz
bugzilla-baf36f72baa2095b92b298fd45d9cbb522cdca87.tar.xz
Bug 859315: lots of "Lock wait timeout exceeded" errors when updating cf_crash_signature
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm8
1 files changed, 3 insertions, 5 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index 08c347abe..a41da186b 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -3845,7 +3845,7 @@ sub GetBugActivity {
$datepart
$attachpart
$suppwhere
- ORDER BY bugs_activity.bug_when";
+ ORDER BY bugs_activity.bug_when, bugs_activity.id";
my $list = $dbh->selectall_arrayref($query, undef, @args);
@@ -3941,13 +3941,11 @@ sub _join_activity_entries {
# We need to insert characters as these were removed by old
# LogActivityEntry code.
- if ($current_change eq '') {
- return $new_change;
- }
+ return $new_change if $current_change eq '';
# Buglists and see_also need the comma restored
if ($field eq 'dependson' || $field eq 'blocked' || $field eq 'see_also') {
- if (substr($new_change, 0, 1) eq ',') {
+ if (substr($new_change, 0, 1) eq ',' || substr($new_change, 0, 1) eq ' ') {
return $current_change . $new_change;
} else {
return $current_change . ', ' . $new_change;