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

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

Issue 2557553002: [Culprit-Finder] Seperate gae related part in cache_decorator and gitile repository to gae_libs/ (Closed)
Patch Set: Fix nits. Created 4 years 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/gae_libs/caches.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/crash/crash_pipeline.py
diff --git a/appengine/findit/crash/crash_pipeline.py b/appengine/findit/crash/crash_pipeline.py
index fcf4334689a8d239c6a9a842ccde48ee44407eae..3b98bb98a8f90b8e977f988e3b196a690df6fc11 100644
--- a/appengine/findit/crash/crash_pipeline.py
+++ b/appengine/findit/crash/crash_pipeline.py
@@ -17,7 +17,7 @@ from crash import findit_for_chromecrash
from crash import findit_for_clusterfuzz
from crash.type_enums import CrashClient
from lib import time_util
-from lib.gitiles import gitiles_repository
+from gae_libs.gitiles import cached_gitiles_repository
from model import analysis_status
@@ -93,7 +93,8 @@ class CrashBasePipeline(BasePipeline):
self._crash_identifiers = crash_identifiers
self._findit = FinditForClientID(
client_id,
- gitiles_repository.GitilesRepository(HttpClientAppengine()))
+ cached_gitiles_repository.CachedGitilesRepository(
+ HttpClientAppengine()))
@property
def client_id(self): # pragma: no cover
« no previous file with comments | « no previous file | appengine/findit/gae_libs/caches.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698