Fix "main process kept alive forever by ToSServerThread."
This commit is contained in:
parent
e6ca449d34
commit
2914ba6af5
|
@ -47,7 +47,9 @@ def start():
|
|||
up explicitly by calling stop(), or automatically atexit.
|
||||
"""
|
||||
global processes
|
||||
ToSServerThread().start()
|
||||
t = ToSServerThread()
|
||||
t.daemon = True
|
||||
t.start()
|
||||
for prog in [
|
||||
'cmd/boulder-wfe',
|
||||
'cmd/boulder-ra',
|
||||
|
|
Loading…
Reference in New Issue