~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/remote.py

  • Committer: Vincent Ladeuil
  • Date: 2007-06-11 07:10:17 UTC
  • mto: This revision was merged to the branch mainline in revision 2646.
  • Revision ID: v.ladeuil+lp@free.fr-20070611071017-0e6xt2o4e1y75195
Add some remarks about current limitations in connection sharing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
492
492
        assert base.startswith('bzr+http://')
493
493
 
494
494
        if http_transport is None:
 
495
            # FIXME: the password may be lost here because it appears in the
 
496
            # url only for an intial construction (when the url came from the
 
497
            # command-line).
495
498
            http_url = base[len('bzr+'):]
496
499
            self._http_transport = transport.get_transport(http_url)
497
500
        else: