/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to server.py

  • Committer: Jelmer Vernooij
  • Date: 2009-09-10 13:13:15 UTC
  • mto: (0.200.602 trunk)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20090910131315-6890xg58pl2jseml
Allow serving remote URLs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
import tempfile
19
19
 
20
20
from dulwich.server import TCPGitServer
21
 
import os
22
21
 
23
22
from bzrlib.bzrdir import (
24
23
    BzrDir,
132
131
            return repo.fetch_objects(determine_wants, graph_walker, None, progress)
133
132
 
134
133
        wants = determine_wants(self.get_refs())
 
134
        graph_walker.reset()
135
135
        repo.lock_read()
136
136
        store = BazaarObjectStore(repo)
137
137
        have = store.find_common_revisions(graph_walker)