portal 3.1.10__tar.gz → 3.1.11__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.
- {portal-3.1.10/portal.egg-info → portal-3.1.11}/PKG-INFO +1 -1
- {portal-3.1.10 → portal-3.1.11}/portal/__init__.py +1 -1
- {portal-3.1.10 → portal-3.1.11}/portal/batching.py +1 -0
- {portal-3.1.10 → portal-3.1.11}/portal/server_socket.py +1 -0
- {portal-3.1.10 → portal-3.1.11}/portal/utils.py +2 -2
- {portal-3.1.10 → portal-3.1.11/portal.egg-info}/PKG-INFO +1 -1
- {portal-3.1.10 → portal-3.1.11}/LICENSE +0 -0
- {portal-3.1.10 → portal-3.1.11}/MANIFEST.in +0 -0
- {portal-3.1.10 → portal-3.1.11}/README.md +0 -0
- {portal-3.1.10 → portal-3.1.11}/portal/buffers.py +0 -0
- {portal-3.1.10 → portal-3.1.11}/portal/client.py +0 -0
- {portal-3.1.10 → portal-3.1.11}/portal/client_socket.py +0 -0
- {portal-3.1.10 → portal-3.1.11}/portal/contextlib.py +0 -0
- {portal-3.1.10 → portal-3.1.11}/portal/packlib.py +0 -0
- {portal-3.1.10 → portal-3.1.11}/portal/poollib.py +0 -0
- {portal-3.1.10 → portal-3.1.11}/portal/process.py +0 -0
- {portal-3.1.10 → portal-3.1.11}/portal/server.py +0 -0
- {portal-3.1.10 → portal-3.1.11}/portal/sharray.py +0 -0
- {portal-3.1.10 → portal-3.1.11}/portal/thread.py +0 -0
- {portal-3.1.10 → portal-3.1.11}/portal.egg-info/SOURCES.txt +0 -0
- {portal-3.1.10 → portal-3.1.11}/portal.egg-info/dependency_links.txt +0 -0
- {portal-3.1.10 → portal-3.1.11}/portal.egg-info/requires.txt +0 -0
- {portal-3.1.10 → portal-3.1.11}/portal.egg-info/top_level.txt +0 -0
- {portal-3.1.10 → portal-3.1.11}/pyproject.toml +0 -0
- {portal-3.1.10 → portal-3.1.11}/requirements.txt +0 -0
- {portal-3.1.10 → portal-3.1.11}/setup.cfg +0 -0
- {portal-3.1.10 → portal-3.1.11}/setup.py +0 -0
- {portal-3.1.10 → portal-3.1.11}/tests/test_batching.py +0 -0
- {portal-3.1.10 → portal-3.1.11}/tests/test_client.py +0 -0
- {portal-3.1.10 → portal-3.1.11}/tests/test_errfile.py +0 -0
- {portal-3.1.10 → portal-3.1.11}/tests/test_pack.py +0 -0
- {portal-3.1.10 → portal-3.1.11}/tests/test_process.py +0 -0
- {portal-3.1.10 → portal-3.1.11}/tests/test_server.py +0 -0
- {portal-3.1.10 → portal-3.1.11}/tests/test_socket.py +0 -0
- {portal-3.1.10 → portal-3.1.11}/tests/test_thread.py +0 -0
@@ -19,6 +19,7 @@ class BatchServer:
|
|
19
19
|
self, port, name='Server', workers=1, errors=True,
|
20
20
|
process=True, shmem=False, **kwargs):
|
21
21
|
inner_port = utils.free_port()
|
22
|
+
assert port != inner_port, (port, inner_port)
|
22
23
|
self.name = name
|
23
24
|
self.server = server.Server(inner_port, name, workers, errors, **kwargs)
|
24
25
|
if process:
|
@@ -48,6 +48,7 @@ class ServerSocket:
|
|
48
48
|
self.addr = (self.options.host, port)
|
49
49
|
self.sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
50
50
|
# self.sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
|
51
|
+
self._log(f'Binding to {self.addr[0]}:{self.addr[1]}')
|
51
52
|
self.sock.bind(self.addr)
|
52
53
|
self.sock.setblocking(False)
|
53
54
|
self.sock.listen()
|
@@ -78,13 +78,13 @@ def kill_procs(procs, timeout=3):
|
|
78
78
|
if p.status() != psutil.STATUS_ZOMBIE else None), procs)
|
79
79
|
|
80
80
|
|
81
|
-
def free_port():
|
81
|
+
def free_port(low=10000, high=50000):
|
82
82
|
# Return a port that is currently free. This function is not thread or
|
83
83
|
# process safe, because there is no way to guarantee that the port will still
|
84
84
|
# be free at the time it will be used.
|
85
85
|
rng = np.random.default_rng()
|
86
86
|
while True:
|
87
|
-
port = int(rng.integers(
|
87
|
+
port = int(rng.integers(low, high))
|
88
88
|
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
|
89
89
|
if s.connect_ex(('', port)):
|
90
90
|
return port
|
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
|
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
|
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
|
File without changes
|
File without changes
|