~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/weaverepo.py

create thread for bbc

Show diffs side-by-side

added added

removed removed

Lines of Context:
266
266
    supports_tree_reference = False
267
267
    supports_ghosts = False
268
268
    supports_external_lookups = False
 
269
    supports_chks = False
269
270
    _fetch_order = 'topological'
270
271
    _fetch_reconcile = True
271
272
    fast_deltas = False
314
315
        result.signatures = self._get_signatures(repo_transport, result)
315
316
        result.inventories = self._get_inventories(repo_transport, result)
316
317
        result.texts = self._get_texts(repo_transport, result)
 
318
        result.chk_bytes = None
317
319
        return result
318
320
 
319
321
    def check_conversion_target(self, target_format):
474
476
 
475
477
    _versionedfile_class = weave.WeaveFile
476
478
    supports_ghosts = False
 
479
    supports_chks = False
 
480
 
477
481
    _fetch_order = 'topological'
478
482
    _fetch_reconcile = True
479
483
    fast_deltas = False
554
558
        result.signatures = self._get_signatures(repo_transport, result)
555
559
        result.inventories = self._get_inventories(repo_transport, result)
556
560
        result.texts = self._get_texts(repo_transport, result)
 
561
        result.chk_bytes = None
557
562
        result._transport = repo_transport
558
563
        return result
559
564