##// END OF EJS Templates
branchcache: stay silent if failing to read cache files...
Mads Kiilerich -
r24728:75688a6f default
parent child Browse files
Show More
@@ -316,8 +316,6 b' class revbranchcache(object):'
316 self._rbcsnameslen = len(bndata) # for verification before writing
316 self._rbcsnameslen = len(bndata) # for verification before writing
317 self._names = [encoding.tolocal(bn) for bn in bndata.split('\0')]
317 self._names = [encoding.tolocal(bn) for bn in bndata.split('\0')]
318 except (IOError, OSError), inst:
318 except (IOError, OSError), inst:
319 repo.ui.debug("couldn't read revision branch cache names: %s\n" %
320 inst)
321 if readonly:
319 if readonly:
322 # don't try to use cache - fall back to the slow path
320 # don't try to use cache - fall back to the slow path
323 self.branchinfo = self._branchinfo
321 self.branchinfo = self._branchinfo
@@ -28,7 +28,6 b' test case collision on rename (issue750)'
28 a
28 a
29 committing manifest
29 committing manifest
30 committing changelog
30 committing changelog
31 couldn't read revision branch cache names: * (glob)
32 committed changeset 0:07f4944404050f47db2e5c5071e0e84e7a27bba9
31 committed changeset 0:07f4944404050f47db2e5c5071e0e84e7a27bba9
33
32
34 Case-changing renames should work:
33 Case-changing renames should work:
@@ -53,7 +53,6 b' Convert while testing all possible outpu'
53 source: svn:afeb9c47-92ff-4c0c-9f72-e1f6eb8ac9af/trunk@1
53 source: svn:afeb9c47-92ff-4c0c-9f72-e1f6eb8ac9af/trunk@1
54 converting: 0/6 revisions (0.00%)
54 converting: 0/6 revisions (0.00%)
55 committing changelog
55 committing changelog
56 couldn't read revision branch cache names: * (glob)
57 4 hello
56 4 hello
58 source: svn:afeb9c47-92ff-4c0c-9f72-e1f6eb8ac9af/trunk@2
57 source: svn:afeb9c47-92ff-4c0c-9f72-e1f6eb8ac9af/trunk@2
59 converting: 1/6 revisions (16.67%)
58 converting: 1/6 revisions (16.67%)
General Comments 0
You need to be logged in to leave comments. Login now