##// END OF EJS Templates
subrepo: add "_cachestorehashvfs" to handle cache store hash files via vfs...
FUJIWARA Katsunori -
r23367:115af8de default
parent child Browse files
Show More
@@ -566,6 +566,10 b' class hgsubrepo(abstractsubrepo):'
566 return self._repo.join(os.path.join(
566 return self._repo.join(os.path.join(
567 'cache', 'storehash', _getstorehashcachename(remotepath)))
567 'cache', 'storehash', _getstorehashcachename(remotepath)))
568
568
569 @propertycache
570 def _cachestorehashvfs(self):
571 return scmutil.vfs(self._repo.join('cache/storehash'))
572
569 def _readstorehashcache(self, remotepath):
573 def _readstorehashcache(self, remotepath):
570 '''read the store hash cache for a given remote repository'''
574 '''read the store hash cache for a given remote repository'''
571 cachefile = self._getstorehashcachepath(remotepath)
575 cachefile = self._getstorehashcachepath(remotepath)
General Comments 0
You need to be logged in to leave comments. Login now