Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1257)

Unified Diff: appengine/findit/crash/clusterfuzz_parser.py

Issue 2610763002: [Predator] Pass flags to callstack detector and fix nit. (Closed)
Patch Set: . Created 3 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | appengine/findit/crash/flag_manager.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/crash/clusterfuzz_parser.py
diff --git a/appengine/findit/crash/clusterfuzz_parser.py b/appengine/findit/crash/clusterfuzz_parser.py
index f654d9e2ab178a84db2f0bf2666fe23809b19fc4..c03755115304c1570537c5edd4851761892ea770 100644
--- a/appengine/findit/crash/clusterfuzz_parser.py
+++ b/appengine/findit/crash/clusterfuzz_parser.py
@@ -104,7 +104,7 @@ class ClusterfuzzParser(StacktraceParser):
for line in stacktrace_string.splitlines():
# Note, some flags like is_first_stack may be changed inside of stack
# detector.
- start_of_callstack = stack_detector(line)
+ start_of_callstack = stack_detector(line, flags=self.flag_manager)
if start_of_callstack:
stacktrace_buffer.AddFilteredStack(
« no previous file with comments | « no previous file | appengine/findit/crash/flag_manager.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698