Skip to content
Snippets Groups Projects
Commit 14c05ee2 authored by Marek Vavruša's avatar Marek Vavruša
Browse files

tests/integration: decreased poll time for latency

it's not running while we're in the C code anyway because of GIL
parent 03ff8e18
Branches
Tags
3 merge requests!4Integration tests,!3Integration tests,!2Integration tests
......@@ -66,7 +66,7 @@ class TestServer:
self.is_active = True
clients = [self.sock]
while self.is_active and len(clients):
to_read, _, to_error = select.select(clients, [], clients, 0.5)
to_read, _, to_error = select.select(clients, [], clients, 0.1)
for sock in to_read:
if sock == self.sock:
clients.append(sock.accept()[0])
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment