Fix "main process kept alive forever by ToSServerThread."

This commit is contained in:
Tom Clegg 2015-07-25 18:17:02 -04:00
parent e6ca449d34
commit 2914ba6af5
1 changed files with 3 additions and 1 deletions

View File

@ -47,7 +47,9 @@ def start():
up explicitly by calling stop(), or automatically atexit. up explicitly by calling stop(), or automatically atexit.
""" """
global processes global processes
ToSServerThread().start() t = ToSServerThread()
t.daemon = True
t.start()
for prog in [ for prog in [
'cmd/boulder-wfe', 'cmd/boulder-wfe',
'cmd/boulder-ra', 'cmd/boulder-ra',