vssh 3.6.6__tar.gz → 3.6.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {vssh-3.6.6/vssh.egg-info → vssh-3.6.7}/PKG-INFO +1 -1
- {vssh-3.6.6 → vssh-3.6.7}/pyproject.toml +1 -1
- {vssh-3.6.6 → vssh-3.6.7/vssh.egg-info}/PKG-INFO +1 -1
- {vssh-3.6.6 → vssh-3.6.7}/vssh.py +2 -2
- {vssh-3.6.6 → vssh-3.6.7}/LICENSE +0 -0
- {vssh-3.6.6 → vssh-3.6.7}/README.md +0 -0
- {vssh-3.6.6 → vssh-3.6.7}/setup.cfg +0 -0
- {vssh-3.6.6 → vssh-3.6.7}/vssh.egg-info/SOURCES.txt +0 -0
- {vssh-3.6.6 → vssh-3.6.7}/vssh.egg-info/dependency_links.txt +0 -0
- {vssh-3.6.6 → vssh-3.6.7}/vssh.egg-info/entry_points.txt +0 -0
- {vssh-3.6.6 → vssh-3.6.7}/vssh.egg-info/top_level.txt +0 -0
- {vssh-3.6.6 → vssh-3.6.7}/vssh_mcp_server.py +0 -0
- {vssh-3.6.6 → vssh-3.6.7}/vssh_p2p.py +0 -0
|
@@ -4017,7 +4017,7 @@ Env: VSSH_SECRET
|
|
|
4017
4017
|
result['info'] = json.loads(buf.decode())
|
|
4018
4018
|
except (json.JSONDecodeError, ValueError, UnicodeDecodeError) as e:
|
|
4019
4019
|
pass # e silenced
|
|
4020
|
-
s.close()
|
|
4020
|
+
s.close() # Always close — was only in full_mode, causing 13 dangling sockets on regular status
|
|
4021
4021
|
except OSError:
|
|
4022
4022
|
pass # safe to ignore
|
|
4023
4023
|
return result
|
|
@@ -4032,7 +4032,7 @@ Env: VSSH_SECRET
|
|
|
4032
4032
|
total = 0
|
|
4033
4033
|
# Run checks in parallel for speed
|
|
4034
4034
|
results = []
|
|
4035
|
-
with concurrent.futures.ThreadPoolExecutor(max_workers=
|
|
4035
|
+
with concurrent.futures.ThreadPoolExecutor(max_workers=5) as pool: # 5 concurrent: limits WireGuard handshake burst that disrupts active sessions
|
|
4036
4036
|
futures = {pool.submit(_check_node, n, ip): n for n, ip in sorted(_servers.items()) if ip}
|
|
4037
4037
|
for f in concurrent.futures.as_completed(futures):
|
|
4038
4038
|
results.append(f.result())
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|