mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 01:11:35 +00:00
interface: do not use daemon threads
This commit is contained in:
parent
9a40ed1d3c
commit
5f3b6af2e0
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,6 @@ class TcpConnection(threading.Thread, util.PrintError):
|
|||
|
||||
def __init__(self, server, queue, config_path):
|
||||
threading.Thread.__init__(self)
|
||||
self.daemon = True
|
||||
self.config_path = config_path
|
||||
self.queue = queue
|
||||
self.server = server
|
||||
|
@ -105,6 +104,7 @@ class TcpConnection(threading.Thread, util.PrintError):
|
|||
for res in l:
|
||||
try:
|
||||
s = socket.socket(res[0], socket.SOCK_STREAM)
|
||||
s.settimeout(10)
|
||||
s.connect(res[4])
|
||||
s.settimeout(2)
|
||||
s.setsockopt(socket.SOL_SOCKET, socket.SO_KEEPALIVE, 1)
|
||||
|
|
Loading…
Add table
Reference in a new issue