/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 bzrlib/transport/smart.py

  • Committer: Martin Pool
  • Date: 2007-02-21 05:34:56 UTC
  • mfrom: (2296 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2309.
  • Revision ID: mbp@sourcefrog.net-20070221053456-vyr6o0ehqnbetrvb
merge trunk, in particular new Branch6 changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
867
867
 
868
868
    def stop_background_thread(self):
869
869
        self._should_terminate = True
 
870
        # At one point we would wait to join the threads here, but it looks
 
871
        # like they don't actually exit.  So now we just leave them running
 
872
        # and expect to terminate the process. -- mbp 20070215
870
873
        # self._server_socket.close()
871
 
        # we used to join the thread, but it's not really necessary; it will
872
 
        # terminate in time
 
874
        ## sys.stderr.write("waiting for server thread to finish...")
873
875
        ## self._server_thread.join()
874
876
 
875
877