From 8599578411e3623c65598fc94a0d3bea478cf1c0 Mon Sep 17 00:00:00 2001 From: Ricardo Robles Date: Sat, 10 May 2025 15:44:23 +0200 Subject: [PATCH] Removed server process startup in multi-worker testing. --- tests/http_base.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/http_base.py b/tests/http_base.py index 5c0008e..74eeb17 100644 --- a/tests/http_base.py +++ b/tests/http_base.py @@ -290,6 +290,5 @@ class DaphneTestCase(unittest.TestCase): with DaphneTestingInstance() as test_app: # Configure the server with 3 workers test_app.process.kwargs["workers"] = 3 - test_app.process.start() # Verify that the server is running self.assertTrue(test_app.process.ready.wait(test_app.startup_timeout))