~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-08-30 07:47:38 UTC
  • mfrom: (5394.2.1 integration2)
  • Revision ID: pqm@pqm.ubuntu.com-20100830074738-ymqwum541fi8b4sr
(vila) Fix most of the leaking tests (Vincent Ladeuil)

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)