~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/server.py

Merge previous attempt into current trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
import errno
20
20
import os.path
 
21
import select
21
22
import socket
22
23
import sys
23
24
import threading
174
175
            None, handler.serve, name=thread_name)
175
176
        connection_thread.setDaemon(True)
176
177
        connection_thread.start()
 
178
        return connection_thread
177
179
 
178
180
    def start_background_thread(self, thread_name_suffix=''):
179
181
        self._started.clear()