Skip to content

Commit b579984

Browse files
committed
Fix abrt-adaptor config for cpp problems
This modifies pattern for catching cpp problem messages produced by ABRT. Found that not all mentioned messages fit into former pattern. For example following is valid cpp problem message produced by ABRT: Process xxx (bad_binary) crashed in Will::Fail::a() [clone .isra.2]() but doesn't fit former pattern, since it's last part contains whitespaces.
1 parent 9c29602 commit b579984

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/abrt-adaptor.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
{
1313
"type": "temporary",
1414
"reason": "CCPPCrash",
15-
"pattern": "Process \\d+ \\(\\S+\\) crashed in \\S+"
15+
"pattern": "Process \\d+ \\(\\S+\\) crashed in .*"
1616
},
1717
{
1818
"type": "temporary",

0 commit comments

Comments
 (0)