mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
interface: don't show traceback on error 104
This commit is contained in:
parent
9874afac8b
commit
b3364b87d1
1 changed files with 4 additions and 2 deletions
|
@ -266,8 +266,10 @@ class TcpInterface(threading.Thread):
|
||||||
return
|
return
|
||||||
print_error("wrong certificate", self.host)
|
print_error("wrong certificate", self.host)
|
||||||
return
|
return
|
||||||
except BaseException:
|
except BaseException, e:
|
||||||
print_error("wrap_socket failed", self.host)
|
print_error(self.host, e)
|
||||||
|
if e.errno == 104:
|
||||||
|
return
|
||||||
traceback.print_exc(file=sys.stderr)
|
traceback.print_exc(file=sys.stderr)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue