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

Unified Diff: tools/findit/findit_for_clusterfuzz.py

Issue 551433003: [Findit] Fix network timeout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase again. Created 6 years, 3 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 | « tools/findit/crash_utils.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/findit/findit_for_clusterfuzz.py
diff --git a/tools/findit/findit_for_clusterfuzz.py b/tools/findit/findit_for_clusterfuzz.py
index c1094565d2b6803d579b08fc8379697dbb6bec51..0365f0ed9b3b22e23272759a07266c6406811586 100644
--- a/tools/findit/findit_for_clusterfuzz.py
+++ b/tools/findit/findit_for_clusterfuzz.py
@@ -114,7 +114,7 @@ def FindCulpritCLs(stacktrace_string,
print ('Failed to get component regression ranges for chromium '
'regression range %s:%s'
% (chrome_regression_start, chrome_regression_end))
- sys.exit(1)
+ sys.exit(0)
# Parse crash revision.
if chrome_crash_revision:
@@ -123,7 +123,7 @@ def FindCulpritCLs(stacktrace_string,
if not component_to_crash_revision_dict:
print ('Failed to get component dependencies for chromium revision "%s".'
% chrome_crash_revision)
- sys.exit(1)
+ sys.exit(0)
# Check if component regression information is available.
component_regression = crash_utils.SplitRange(component_regression)
« no previous file with comments | « tools/findit/crash_utils.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698