Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.

Commit bc2af71

Browse files
authored
Merge branch 'main' into handle-timeout
2 parents 3972e11 + e51b56c commit bc2af71

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

tests/unit/test_flow.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,7 @@ def port(self):
269269
@pytest.fixture
270270
def socket(self, port):
271271
s = socket.socket()
272+
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) # Enable SO_REUSEADDR
272273
s.bind(("localhost", port))
273274
yield s
274275
s.close()

0 commit comments

Comments
 (0)