Skip to content

Commit 2aed7a8

Browse files
committed
Add more logutil patterns.
1 parent db9ecd6 commit 2aed7a8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

votrfront/logutil.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
def classify(line):
2020
if "OSError: failed to write data" in line.content:
2121
return 'OSError'
22+
if ("OSError: Apache/mod_wsgi failed to write response data: Broken pipe"
23+
in line.content):
24+
return 'OSError'
2225
if "base.ps.PSException: Nie je connection" in line.content:
2326
return 'SQLError'
2427
if "java.sql.SQLException: Connection is not valid" in line.content:
@@ -35,6 +38,9 @@ def classify(line):
3538
return 'HTTPError'
3639
if "failed with LoggedOutError" in line.content:
3740
return 'LoggedOutError'
41+
if ("zapis_plan_vyhladaj" in line.content and
42+
"AIS did not return all table rows" in line.content):
43+
return 'open issue121'
3844
return 'open'
3945

4046

0 commit comments

Comments
 (0)