summaryrefslogtreecommitdiffstats
path: root/src/Backtrace
diff options
context:
space:
mode:
authorKarel Klic <kklic@redhat.com>2009-11-24 18:03:02 +0100
committerKarel Klic <kklic@redhat.com>2009-11-24 18:03:02 +0100
commit191b2df01075cf7a5c44550c6fdcc32944bf3a2f (patch)
tree1afbd0f6f1b6b1869ade849093c8648746bb4fa7 /src/Backtrace
parentb5164f567d7b03a9ee7c02e1e3e00c487bef7f2f (diff)
downloadabrt-191b2df01075cf7a5c44550c6fdcc32944bf3a2f.tar.gz
abrt-191b2df01075cf7a5c44550c6fdcc32944bf3a2f.tar.xz
abrt-191b2df01075cf7a5c44550c6fdcc32944bf3a2f.zip
Skip broken backtraces when downloading.
Diffstat (limited to 'src/Backtrace')
-rwxr-xr-xsrc/Backtrace/abrt-bz-downloader12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Backtrace/abrt-bz-downloader b/src/Backtrace/abrt-bz-downloader
index 44dc4e41..4bc27c24 100755
--- a/src/Backtrace/abrt-bz-downloader
+++ b/src/Backtrace/abrt-bz-downloader
@@ -47,6 +47,18 @@ for buginfo in buginfos:
print "Skipping {0} (already exists).".format(filename)
continue
+ # Skip bugs with broken or Python backtraces
+ broken_backtrace_bugs = [ 517116, 518511, 518516, 518708, 518923,
+ 518923, 518981, 519134, 519367, 520287,
+ 521582, 521923, 521953, 522047, 522048,
+ 522973, 523194, 523198, 523226, 523230,
+ 523272, 523274, 523295, 523301, 523328,
+ 523676, 523685, 523686, 523687, 523688,
+ 523866, 523994, 524128, 524294, 524322,
+ 524341, 524700, 524715, 525094, 525674 ]
+ if buginfo.bug_id in broken_backtrace_bugs:
+ continue
+
# Get backtrace from bug and store it as a file.
bug = bz.getbug(buginfo.bug_id)
for attachment in bug.attachments: