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