We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db9ecd6 commit 2aed7a8Copy full SHA for 2aed7a8
votrfront/logutil.py
@@ -19,6 +19,9 @@
19
def classify(line):
20
if "OSError: failed to write data" in line.content:
21
return 'OSError'
22
+ if ("OSError: Apache/mod_wsgi failed to write response data: Broken pipe"
23
+ in line.content):
24
+ return 'OSError'
25
if "base.ps.PSException: Nie je connection" in line.content:
26
return 'SQLError'
27
if "java.sql.SQLException: Connection is not valid" in line.content:
@@ -35,6 +38,9 @@ def classify(line):
35
38
return 'HTTPError'
36
39
if "failed with LoggedOutError" in line.content:
37
40
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'
44
return 'open'
45
46
0 commit comments