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

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

Issue 2432203003: [Predator] Run predator. (Closed)
Patch Set: Rebase. Created 4 years, 1 month 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/crash_pipeline.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/crash/changelist_classifier.py
diff --git a/appengine/findit/crash/changelist_classifier.py b/appengine/findit/crash/changelist_classifier.py
index 1272025e4041fb4c417a241bcb8256ed5d8992f7..7dab4cf51e7f22ff2f4862177eefd60212cf1fd6 100644
--- a/appengine/findit/crash/changelist_classifier.py
+++ b/appengine/findit/crash/changelist_classifier.py
@@ -292,13 +292,13 @@ def FindMatchResults(dep_to_file_to_changelogs,
for dep, file_to_stack_infos in dep_to_file_to_stack_infos.iteritems():
file_to_changelogs = dep_to_file_to_changelogs[dep]
- repository.repo_url = stack_deps[dep].repo_url
for crashed_file_path, stack_infos in file_to_stack_infos.iteritems():
for touched_file_path, changelogs in file_to_changelogs.iteritems():
if not crash_util.IsSameFilePath(crashed_file_path, touched_file_path):
continue
+ repository.repo_url = stack_deps[dep].repo_url
blame = repository.GetBlame(touched_file_path,
stack_deps[dep].revision)
« no previous file with comments | « no previous file | appengine/findit/crash/crash_pipeline.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698