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

Unified Diff: owners.py

Issue 2293233002: owners.py: partial fix for owners-check perf regression (Closed)
Patch Set: Created 4 years, 4 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: owners.py
diff --git a/owners.py b/owners.py
index 78c7cca9cb7e6d9385fd954ce3512ce13ffd2da6..7773dbc38b6158005dc696cd14dc8c0ebb64bf8e 100644
--- a/owners.py
+++ b/owners.py
@@ -189,9 +189,11 @@ class Database(object):
def load_data_needed_for(self, files):
for f in files:
+ loaded_dirs = set()
dirpath = self.os_path.dirname(f)
- while not self._owners_for(dirpath):
+ while dirpath not in loaded_dirs:
dtu 2016/08/31 02:35:46 Is loaded_dirs supposed to be at the top-level? I
self._read_owners(self.os_path.join(dirpath, 'OWNERS'))
+ loaded_dirs.add(dirpath)
if self._should_stop_looking(dirpath):
break
dirpath = self.os_path.dirname(dirpath)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698