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

Unified Diff: chrome/common/extensions/docs/server2/empty_dir_file_system.py

Issue 660383002: Docserver: Persist stat cache for versioned file systems (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: change caching strategy, better refresh cycle synchronization Created 6 years, 2 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
Index: chrome/common/extensions/docs/server2/empty_dir_file_system.py
diff --git a/chrome/common/extensions/docs/server2/empty_dir_file_system.py b/chrome/common/extensions/docs/server2/empty_dir_file_system.py
index a508747677218ad7c270b6cb68dbce54d2310e12..4af83b1e5ccf21cce13b2a6f59f12c2b9e3cad94 100644
--- a/chrome/common/extensions/docs/server2/empty_dir_file_system.py
+++ b/chrome/common/extensions/docs/server2/empty_dir_file_system.py
@@ -28,5 +28,5 @@ class EmptyDirFileSystem(FileSystem):
raise FileNotFoundError('EmptyDirFileSystem cannot stat %s' % path)
return StatInfo(0, child_versions=[])
- def GetIdentity(self):
+ def GetStableIdentity(self):
return self.__class__.__name__

Powered by Google App Engine
This is Rietveld 408576698