~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/gio_transport.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-09-01 08:02:42 UTC
  • mfrom: (5390.3.3 faster-revert-593560)
  • Revision ID: pqm@pqm.ubuntu.com-20100901080242-esg62ody4frwmy66
(spiv) Avoid repeatedly calling self.target.all_file_ids() in
 InterTree.iter_changes. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
241
241
                                        " %s" % str(e), orig_error=e)
242
242
        return connection, (user, password)
243
243
 
 
244
    def disconnect(self):
 
245
        # FIXME: Nothing seems to be necessary here, which sounds a bit strange
 
246
        # -- vila 20100601
 
247
        pass
 
248
 
244
249
    def _reconnect(self):
 
250
        # FIXME: This doesn't seem to be used -- vila 20100601
245
251
        """Create a new connection with the previously used credentials"""
246
252
        credentials = self._get_credentials()
247
253
        connection, credentials = self._create_connection(credentials)