systemd-journal koops, python exceptions without traceback
This commit is contained in:
parent
540b10b023
commit
f4e24995ef
4 changed files with 2080 additions and 1 deletions
40
0002-python-support-exceptions-without-traceback.patch
Normal file
40
0002-python-support-exceptions-without-traceback.patch
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
From 6b57ceebb1366e23321b1fe40d15285708e16869 Mon Sep 17 00:00:00 2001
|
||||
From: Jakub Filak <jfilak@redhat.com>
|
||||
Date: Wed, 9 Jul 2014 17:55:36 +0200
|
||||
Subject: [PATCH 2/9] python: support exceptions without traceback
|
||||
|
||||
e.g. SyntaxError (python-2.7.5-13.fc20, python-2.7.7-2.fc21)
|
||||
|
||||
Signed-off-by: Jakub Filak <jfilak@redhat.com>
|
||||
---
|
||||
src/hooks/abrt_exception_handler.py.in | 14 ++++++++------
|
||||
1 file changed, 8 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/src/hooks/abrt_exception_handler.py.in b/src/hooks/abrt_exception_handler.py.in
|
||||
index cb32e14..fa4f34f 100644
|
||||
--- a/src/hooks/abrt_exception_handler.py.in
|
||||
+++ b/src/hooks/abrt_exception_handler.py.in
|
||||
@@ -55,12 +55,14 @@ def write_dump(tb_text, tb):
|
||||
executable = sys.argv[0]
|
||||
|
||||
dso_list = None
|
||||
- try:
|
||||
- import rpm
|
||||
- dso_list = get_dso_list(tb)
|
||||
- except ImportError as imperr:
|
||||
- syslog("RPM module not available, cannot query RPM db for package "\
|
||||
- "names")
|
||||
+ # Trace back is None in case of SyntaxError exception.
|
||||
+ if tb:
|
||||
+ try:
|
||||
+ import rpm
|
||||
+ dso_list = get_dso_list(tb)
|
||||
+ except ImportError as imperr:
|
||||
+ syslog("RPM module not available, cannot query RPM db for package "\
|
||||
+ "names")
|
||||
|
||||
# Open ABRT daemon's socket and write data to it
|
||||
try:
|
||||
--
|
||||
1.9.3
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue