mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-26 23:13:25 +00:00
one more daemon thread
This commit is contained in:
parent
06a613ed09
commit
312051a242
1 changed files with 3 additions and 1 deletions
|
@ -223,7 +223,9 @@ class Network(threading.Thread):
|
|||
self.running = True
|
||||
self.response_queue = response_queue
|
||||
self.start_interfaces()
|
||||
threading.Thread(target=self.process_requests_thread).start()
|
||||
t = threading.Thread(target=self.process_requests_thread)
|
||||
t.daemon = True
|
||||
t.start()
|
||||
self.blockchain.start()
|
||||
threading.Thread.start(self)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue